Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jakestrouse00
GitHub Repository: jakestrouse00/website-unblocker
Path: blob/master/styles.css
344 views
1
body {
2
background-color: #393939;
3
}
4
5
button{
6
background-color: #fc4672;
7
border-color: #fc4672;
8
font-weight: bold;
9
}
10
11
12
input{
13
background-color: #fc4672;
14
border-color: #fc4672;
15
font-weight: bold;
16
}
17
18
p{
19
color: white;
20
font-weight: bolder;
21
font-family: Rockwell;
22
}
23
24
.thevideo{
25
background-color: cornsilk;
26
border-color: cornsilk;
27
}
28
29
30
.disclaimer{
31
position: absolute;
32
width: 80%;
33
bottom: 15px;
34
font-size: xx-small;
35
color: #b3d4fc;
36
}
37
.sourcecode{
38
position: absolute;
39
width: 80%;
40
bottom: 10px;
41
color: #b3d4fc;
42
font-size: xx-small;
43
}
44
.getback{
45
font-style: italic;
46
text-align: center;
47
}
48
#sg {
49
font-family: Rockwell;
50
font-weight: bolder;
51
color: white;
52
background-color: #FF5A09;
53
border-color: #fa5909;
54
}
55
#hey{
56
float: right;
57
font-family: Rockwell;
58
font-weight: bolder;
59
color: white;
60
background-color: #FF5A09;
61
border-color: #fa5909;
62
}
63
64
#hey2{
65
float: right;
66
background-color: #393939;
67
}
68
69
#heys{
70
float: left;
71
background-color: #393939;
72
}
73
74
#heys1{
75
float: left;
76
font-family: Rockwell;
77
font-weight: bolder;
78
color: white;
79
background-color: #FF5A09;
80
border-color: #fa5909;
81
}
82
83
84
#st{
85
position:absolute;
86
transition: .5s ease;
87
top: 50%;
88
left: 45%;
89
font-family: Rockwell;
90
font-weight: bolder;
91
color: white;
92
background-color: #FF5A09;
93
border-color: #fa5909;
94
95
}
96
.collapsible {
97
background-color: #777;
98
color: green;
99
cursor: pointer;
100
padding: 18px;
101
width: 100%;
102
border: none;
103
text-align: left;
104
outline: none;
105
font-size: 15px;
106
}
107
/* Style the collapsible content. Note: hidden by default */
108
.content {
109
padding: 0 18px;
110
display: none;
111
overflow: hidden;
112
background-color: #2f2fa2;
113
}
114
115