-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (45 loc) · 865 Bytes
/
style.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
@font-face {
font-family: defaultFont;
src: url(./TerminusTTF.ttf) format('truetype');
}
body {
font-family: 'defaultFont', monospace;
background-color: #131316;
color: white;
font-size: 30px;
}
/* navigation bar */
input[type="radio"] {
display: none;
}
input[type="radio"] + label {
text-decoration: none;
cursor: pointer;
}
input[type=radio]:checked + label {
text-decoration: underline;
}
article {
display: none;
font-family: 'defaultFont', monospace;
}
#home_button:checked ~ #home {
display: block;
}
#about_button:checked ~ #about {
display: block;
}
#projects_button:checked ~ #projects {
display: block;
}
/* end navigation bar */
/* projects page */
details summary {
cursor: pointer;
}
/* end projects page */
footer {
bottom: 0;
width: 100%;
text-align: center;
}