fernando-bold's picture
Com base nas quatro imagens fornecidas, identifiquei três produtos distintos. Aqui está uma captura dos parâmetros de design, UX/UI e produto para cada um deles.
0477c6d verified
raw
history blame contribute delete
760 Bytes
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #2d3748;
}
::-webkit-scrollbar-thumb {
background: #4a5568;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #718096;
}
/* Syntax highlighting classes */
.hljs-keyword {
color: #569cd6;
}
.hljs-string {
color: #ce9178;
}
.hljs-comment {
color: #6a9955;
}
.hljs-type {
color: #4ec9b0;
}
/* Terminal blinking cursor animation */
@keyframes blink {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
.terminal-cursor {
display: inline-block;
width: 8px;
height: 16px;
background-color: #4ade80;
animation: blink 1s step-end infinite;
}