-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
76 lines (62 loc) · 1.3 KB
/
main.css
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
body {
background-color: #0a0a0a;
color: #00ff00;
font-family: 'Fira Code', 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
font-variant-ligatures: normal;
margin: 0;
padding: 20px;
line-height: 1.6;
}
.container {
max-width: 900px;
margin: 0 auto;
border: 1px solid #00ff00;
padding: 20px;
box-shadow: 0 0 10px #00ff00;
}
h1, h2 {
color: #ff00ff;
text-shadow: 0 0 5px #ff00ff;
}
a {
color: #00ff00; /* Bright green for unvisited links */
text-decoration: none;
transition: color 0.3s ease, text-decoration 0.3s ease;
text-decoration: underline;
}
a:hover {
color: #00ffff; /* Cyan for hover */
}
.section {
margin-top: 20px;
border-top: 1px solid #00ff00;
padding-top: 20px;
}
ul {
list-style-type: none;
padding-left: 0;
}
li::before {
content: "> ";
color: #ff00ff;
}
.header {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
circuit-board {
transform: scale(0.5);
display: inline-block;
}
h1 {
color: #ff00ff;
text-shadow: 0 0 5px #ff00ff;
text-align: center;
}
h1 span {
display: inline-block;
width: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');