-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme-60s-terminal.css
More file actions
215 lines (187 loc) · 3.85 KB
/
theme-60s-terminal.css
File metadata and controls
215 lines (187 loc) · 3.85 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* STUDIO by DOSAYGO Theme - 1960s Retro-Futurist Terminal */
/* 1960s retro-futurist aesthetic with a skydiving theme */
/* Palette: Space Gray (#2F2F2F), Rocket Red (#FF4040), Atomic Blue (#4682B4), Retro Silver (#C0C0C0), Star White (#FFFFFF) */
/* Typography: 'Courier New' for typewriter retro */
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace;
font-size: 16px;
line-height: 1.5;
color: #4682B4; /* Atomic Blue for body text */
background: #2F2F2F; /* Space Gray for backdrop */
transition: background 0.3s ease, color 0.3s ease;
}
/* Header */
header {
background: #C0C0C0; /* Retro Silver for header */
padding: 1rem 2rem;
text-align: center;
position: sticky;
top: 0;
z-index: 10;
border-bottom: 5px solid #FF4040; /* Rocket Red border */
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
header h1 {
font-family: 'Courier New', monospace;
font-size: 2.5rem;
font-weight: normal;
color: #FF4040;
text-transform: uppercase;
letter-spacing: 0.2em;
text-shadow: 2px 2px #4682B4; /* Atomic Blue shadow */
}
nav {
margin: 1rem 0;
}
nav a {
font-family: 'Courier New', monospace;
color: #4682B4;
text-decoration: none;
margin: 0 1.5rem;
font-size: 1.2rem;
padding: 0.5rem 1rem;
border: 2px solid #4682B4;
background: #C0C0C0;
transition: background 0.3s ease, color 0.3s ease;
}
nav a:hover {
background: #4682B4;
color: #C0C0C0;
}
/* Main Content */
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 2rem;
display: flex;
flex-direction: column;
gap: 2rem;
}
article {
background: #FFFFFF; /* Star White for articles */
border: 3px solid #FF4040; /* Rocket Red border */
padding: 2rem;
box-shadow: 5px 5px 0 #4682B4; /* Atomic Blue shadow */
position: relative;
}
article::before {
content: ">>> TERMINAL OUTPUT >>>";
font-family: 'Courier New', monospace;
color: #FF4040;
display: block;
text-align: center;
margin-bottom: 1rem;
}
article h2 {
font-family: 'Courier New', monospace;
font-size: 2rem;
font-weight: normal;
color: #4682B4;
margin-bottom: 1.5rem;
text-align: center;
text-transform: uppercase;
}
article h3 {
font-family: 'Courier New', monospace;
font-size: 1.6rem;
font-weight: normal;
color: #FF4040;
margin: 1.5rem 0 0.5rem;
}
article p {
margin-bottom: 1.5rem;
text-align: justify;
}
article ul {
list-style-type: none;
margin-bottom: 1.5rem;
}
article ul li {
margin-bottom: 1rem;
position: relative;
padding-left: 1.5rem;
}
article ul li:before {
content: '??';
position: absolute;
left: 0;
font-size: 1.2rem;
}
/* Author Info */
.author {
font-style: italic;
color: #4682B4;
margin-bottom: 1.5rem;
font-size: 0.95rem;
text-align: center;
}
/* Image Placeholders */
img {
display: block;
width: 100%;
max-width: 300px;
height: auto;
margin: 2rem auto;
border: 3px solid #FF4040;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
/* Code Blocks */
pre {
font-family: 'Courier New', monospace;
background: #2F2F2F;
padding: 1.5rem;
margin: 1.5rem 0;
box-sizing: border-box;
overflow-x: auto;
border: 2px solid #4682B4;
}
code {
line-height: 1.6;
white-space: pre-wrap;
word-break: break-word;
color: #FFFFFF;
}
/* Footer */
footer {
text-align: center;
padding: 2rem;
background: #C0C0C0;
color: #FF4040;
font-size: 0.9rem;
}
footer a {
color: #4682B4;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #FFFFFF;
}
/* Links */
a, a:visited, a:hover, a:focus, a:link, a:active {
color: #4682B4;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover, a:focus {
color: #FFFFFF;
}
/* Responsive Design */
@media (max-width: 768px) {
header {
padding: 1rem;
}
header h1 {
font-size: 1.8rem;
}
nav a {
margin: 0 0.5rem;
font-size: 1rem;
}
}