Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Degen-dev
GitHub Repository: Degen-dev/Degeneracy
Path: blob/master/public/archives/privacy.css
3950 views
1
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
2
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
3
4
h1 {
5
text-align: center;
6
font-size: 69px;
7
font-family: "Roboto";
8
color: grey;
9
}
10
11
body {
12
background-color: #1f1f2e;
13
text-align: center;
14
font-size: 35px;
15
color: grey;
16
font-family: "Roboto";
17
}
18
19
footer {
20
position: absolute;
21
left: 0;
22
right: 0;
23
bottom: 10px;
24
font-family: "Ubuntu";
25
font-size: 15px;
26
color: grey;
27
}
28
29
footer, footer a {
30
font-size: 15px;
31
text-decoration: none;
32
}
33
34
a:hover {
35
text-decoration: underline;
36
}
37
38
button {
39
width: 90px;
40
height: 50px;
41
color: #FFF;
42
padding: 0px 5px;
43
font-family: "Roboto";
44
font-size: 15px;
45
background: #23272a;
46
border-radius: 5px;
47
border: solid 1px rgb(5px);
48
border-color: grey;
49
border-width: 1px;
50
cursor: pointer;
51
}
52
53
button:hover {
54
transition: all .2s ease-in-out;
55
transform: scale(1.1);
56
}
57