-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
77 lines (65 loc) · 1.12 KB
/
index.css
File metadata and controls
77 lines (65 loc) · 1.12 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
/* Reset and base styles */
body {
margin: 0;
padding: 0;
background-color: #0f1117;
color: #e0e0e0;
font-family: 'Courier New', Courier, monospace;
line-height: 1.6;
}
a {
color: #00ffcc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
background-color: #1a1c23;
padding: 20px;
text-align: center;
border-bottom: 2px solid #00ffcc;
}
header h1 {
margin: 0;
font-size: 2.5em;
color: #00ffcc;
}
nav {
margin-top: 10px;
}
nav a {
margin: 0 15px;
font-weight: bold;
}
main {
padding: 40px 20px;
max-width: 800px;
margin: auto;
}
section {
margin-bottom: 40px;
}
section h2 {
color: #00ffcc;
border-bottom: 1px solid #00ffcc;
padding-bottom: 5px;
}
footer {
background-color: #1a1c23;
text-align: center;
padding: 20px;
border-top: 2px solid #00ffcc;
font-size: 0.9em;
color: #888;
}
/* Terminal-style code block */
pre {
background-color: #1e1e1e;
color: #00ffcc;
padding: 15px;
border-radius: 5px;
overflow-x: auto;
box-shadow: 0 0 10px #00ffcc33;
}
/* Button