Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
HenryBass
GitHub Repository: HenryBass/unblocker
Path: blob/main/style.css
1036 views
1
*{
2
text-align:center;
3
font-family: monospace;
4
color: white;
5
}
6
7
body{
8
background-color: black;
9
}
10
11
h1 {
12
font-size: 4vw;
13
text-decoration: underline;
14
}
15
16
h2 {
17
font-size: 20px;
18
text-align: bottom;
19
}
20
21
button{
22
text-align: center;
23
background-color: #84fab0;
24
padding: 8px;
25
border-style: none;
26
color: black;
27
font-size: 16px;
28
font-family: monospace;
29
}
30
31
button:hover{
32
filter: drop-shadow(0 0 0.1rem black);
33
animation: link 0.5s forwards;
34
}
35
36
@keyframes link {
37
from {background-color: #84fab0;}
38
to {background-color: #8fd3f4;}
39
}
40
input{
41
font-family: monospace;
42
padding: 8px;
43
font-size: 16px;
44
margin-right:0px;
45
border-style: none;
46
color: black;
47
text-align: left;
48
}
49
50
a{
51
font-size: 24px;
52
}
53
54
a:link {
55
color: #ccc;
56
}
57
58
a:visited {
59
color: #095484;
60
}
61
62