-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.css
More file actions
112 lines (96 loc) · 1.8 KB
/
theme.css
File metadata and controls
112 lines (96 loc) · 1.8 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
/* Simplified Theme: Minimal Neon Mono */
/* Palette: Dark Black (#0F172A), Neon Teal (#20E4C5), Dark White (#D3D3D3) */
/* Typography: 'Rajdhani' for headings, 'Inconsolata' for body */
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inconsolata', monospace;
font-size: 17px;
line-height: 1.6;
color: #D3D3D3; /* Dark White for text */
background: #0F172A; /* Dark Black background */
min-height: 100vh;
}
/* Main Content */
main {
width: min(65ch, 85%);
margin: 0 auto;
padding: 2rem 0;
}
/* Headings */
h1 {
font-family: 'Rajdhani', sans-serif;
font-size: 1.2rem;
font-weight: normal;
color: #20E4C5; /* Neon Teal */
padding: 2rem 0 0.5rem 0;
border-bottom: 2px solid #20E4C5;
text-transform: uppercase;
letter-spacing: 0.05em;
}
h2 {
font-family: 'Rajdhani', sans-serif;
font-size: 1.1rem;
font-weight: normal;
color: #20E4C5;
padding: 1.5rem 0 0.5rem 0;
}
a h1 {
text-decoration: none;
transition: color 0.2s ease;
}
a h1:hover {
color: #00BFFF; /* Neon Blue for hover */
}
/* Paragraphs */
p {
padding-top: 1.5rem;
font-size: 0.9rem;
color: #D3D3D3;
}
/* Code Blocks */
pre {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
margin: 2rem 0;
border-radius: 5px;
}
code {
font-family: 'Inconsolata', monospace;
color: #D3D3D3;
white-space: pre-wrap;
}
/* Footer */
footer {
text-align: center;
padding: 1.5rem 0;
font-size: 0.9rem;
color: #D3D3D3;
}
/* Links */
a {
color: #20E4C5;
text-decoration: underline;
transition: color 0.2s ease;
}
a:hover {
color: #00BFFF;
}
/* Responsive Design */
@media (max-width: 768px) {
main {
width: 90%;
padding: 1rem 0;
}
h1 {
font-size: 1rem;
padding: 1.5rem 0 0.4rem 0;
}
h2 {
font-size: 1rem;
}
}