File size: 1,534 Bytes
bcb38c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
/* Retro Terminal Styling */
.retro-terminal {
background-color: black;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
border: 2px solid #00FF00;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px #00FF00;
}
/* Textbox Styling */
.retro-terminal input[type="text"] {
background-color: black;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
border: 1px solid #00FF00;
padding: 5px;
border-radius: 3px;
}
/* Dropdown Styling */
.retro-terminal select {
background-color: black;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
border: 1px solid #00FF00;
padding: 5px;
border-radius: 3px;
}
/* Button Styling */
.retro-terminal button {
background-color: black;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
border: 1px solid #00FF00;
padding: 5px 10px;
border-radius: 3px;
cursor: pointer;
}
.retro-terminal button:hover {
background-color: #00FF00;
color: black;
}
/* Textarea Styling */
.retro-terminal textarea {
background-color: black;
color: #00FF00;
font-family: 'Courier New', Courier, monospace;
border: 1px solid #00FF00;
padding: 5px;
border-radius: 3px;
resize: none;
}
/* Add blinking cursor effect for terminal vibe */
.retro-terminal .blinking-cursor::after {
content: '|';
display: inline;
animation: blink 1s step-start infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
|