Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Degen-dev
GitHub Repository: Degen-dev/Degeneracy
Path: blob/master/public/archives/settings.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
body {
5
text-align: center;
6
background-color: #1f1f2e;
7
margin-top: 3%;
8
color: grey;
9
font-size: 45px;
10
font-family: "Ubuntu";
11
}
12
13
h1 {
14
color: grey;
15
font-size: 80px;
16
font-family: "Roboto";
17
}
18
19
p1 {
20
font-size: 25px;
21
}
22
23
img {
24
width: 200px;
25
height: 200px;
26
}
27
28
input {
29
width: 50%;
30
height: 50px;
31
padding: 0px 5px;
32
color: white;
33
font-family: "Roboto";
34
background: #23272a;
35
font-size: 20px;
36
border-radius: 5px;
37
border-color: grey;
38
border-width: 1px;
39
}
40
41
input:hover {
42
transition: all .2s ease-in-out;
43
transform: scale(1.01);
44
}
45
46
button {
47
width: 90px;
48
height: 50px;
49
color: white;
50
padding: 0px 5px;
51
font-size: 15px;
52
font-family: "Roboto";
53
background: #23272a;
54
border-radius: 5px;
55
border-color: grey;
56
border-width: 1px;
57
cursor: pointer;
58
}
59
60
61
button:hover {
62
transition: all .2s ease-in-out;
63
transform: scale(1.1);
64
}
65
66
button[name="cloakButton"] {
67
width: 50px;
68
height: 52px;
69
padding: 0px 5px;
70
margin-left: 5px;
71
}
72
73
footer {
74
position: absolute;
75
left: 0;
76
right: 0;
77
bottom: 10px;
78
font-family: "Ubuntu";
79
font-size: 15px;
80
color: grey;
81
}
82
83
footer, footer a {
84
font-size: 15px;
85
text-decoration: none;
86
}
87
88
a:hover {
89
text-decoration: underline;
90
}
91