Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Degen-dev
GitHub Repository: Degen-dev/Degeneracy
Path: blob/master/public/archives/faq.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
color: grey;
7
font-size: 69px;
8
font-family: 'Roboto';
9
}
10
11
body {
12
text-align: center;
13
background-color: #1f1f2e;
14
font-family: "Ubuntu";
15
}
16
17
div {
18
margin-bottom: 25px;
19
}
20
21
p1 {
22
color: grey;
23
font-size: 30px;
24
}
25
26
p2 {
27
color: grey;
28
font-size: 20px;
29
}
30
31
p3 {
32
color: grey;
33
font-size: 30px;
34
}
35
36
p4 {
37
color: grey;
38
font-size: 20px;
39
}
40
41
p5 {
42
color: grey;
43
font-size: 30px;
44
}
45
46
p6 {
47
color: grey;
48
font-size: 20px;
49
}
50
51
p7 {
52
color: grey;
53
font-size: 30px;
54
}
55
56
p8 {
57
color: grey;
58
font-size: 20px;
59
}
60
61
p9 {
62
color: grey;
63
font-size: 30px;
64
}
65
66
p10 {
67
color: grey;
68
font-size: 20px;
69
}
70
71
footer {
72
position: absolute;
73
left: 0;
74
right: 0;
75
bottom: 10px;
76
font-family: "Ubuntu";
77
margin-top: 10px;
78
font-size: 15px;
79
color: grey;
80
}
81
82
footer, footer a {
83
font-size: 15px;
84
text-decoration: none;
85
}
86
87
a:hover {
88
text-decoration: underline;
89
}
90
91
button {
92
width: 90px;
93
height: 50px;
94
color: #FFF;
95
padding: 0px 5px;
96
font-family: "Roboto";
97
font-size: 20px;
98
background: #23272a;
99
border-radius: 5px;
100
border: solid 1px rgb(5px);
101
border-color: grey;
102
border-width: 1px;
103
cursor: pointer;
104
}
105
106
button:hover {
107
transition: all .2s ease-in-out;
108
transform: scale(1.1);
109
}
110
111
::-webkit-scrollbar {
112
width: 5px;
113
height: 15px;
114
}
115
::-webkit-scrollbar-track-piece {
116
background-color: #1f1f2e;
117
}
118
::-webkit-scrollbar-thumb:vertical {
119
height: 30px;
120
background-color: #0A4C95;
121
}
122