Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
proudparrot2
GitHub Repository: proudparrot2/artclass-v2
Path: blob/main/styles/page.css
50251 views
1
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Press+Start+2P&display=swap');
2
3
body {
4
background-color: #000344
5
}
6
7
.navbutton {
8
color: white;
9
background-color: transparent;
10
border: 3px solid white;
11
border-radius: 5px;
12
padding: 10px;
13
margin: 5px;
14
cursor: pointer;
15
}
16
17
#navbuttons {
18
display: none;
19
margin: 5px;
20
position: absolute;
21
top: 0;
22
left: 0;
23
}
24
25
.gamelink, .link {
26
font-family: "DM Sans";
27
font-size: 20px;
28
}
29
30
.gamelink:hover, .link:hover {
31
color: gray;
32
}
33
34
a, p {
35
text-decoration: none;
36
color: white;
37
text-align: center;
38
}
39
40
#usercounter {
41
margin: auto;
42
width: 50%
43
}
44