-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (63 loc) · 1.05 KB
/
style.css
File metadata and controls
74 lines (63 loc) · 1.05 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
body {
margin: 0;
font-family: 'Fira Code', monospace;
background-color: #0f0f0f;
color: #e0e0e0;
scroll-behavior: smooth;
}
header {
background-color: #111;
padding: 2rem;
text-align: center;
border-bottom: 2px solid #00ff88;
}
header h1 {
margin: 0;
color: #00ff88;
font-size: 3rem;
}
header nav a {
color: #00ff88;
margin: 0 1rem;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
header nav a:hover {
color: #00ffaa;
}
main {
padding: 2rem;
max-width: 900px;
margin: auto;
}
section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
margin-bottom: 4rem;
}
section.visible {
opacity: 1;
transform: translateY(0);
}
h2 {
color: #00ff88;
border-bottom: 1px solid #00ff88;
padding-bottom: 0.5rem;
}
a {
color: #00ff88;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 1rem;
background-color: #111;
border-top: 1px solid #00ff88;
color: #888;
font-size: 0.9rem;
}