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