-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (52 loc) · 1.04 KB
/
style.css
File metadata and controls
64 lines (52 loc) · 1.04 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
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@700&family=Lato:wght@900&display=swap");
body {
background: radial-gradient(circle, #42860d 0%, #1d251c 100%);
margin: 0;
}
/* body::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 200vh;
background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
} */
h1, h2, p {
font-family: 'Mode Seven';
color: white;
font: 2.8rem Inconsolata, monospace;
text-shadow: 0 0 5px #C8C8C8;
text-align: center;
}
h2 {
font-size: 2.48rem;
}
p {
font-size: 0.58rem;
}
::selection {
background: #0080FF;
text-shadow: none;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: Inconsolata, monospace;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}