-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (102 loc) · 1.45 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*
{
font-family: 'Saira', sans-serif;
line-height: 125%
}
h1
{
color: #00ced1;
}
h2
{
color: #00ced1;
}
h3
{
color: #00ced1;
font-size: 16px;
}
body
{
background-color: #000000;
}
p,form,span
{
color: #ffffff;
}
ul
{
list-style-type: none;
margin: 0;
padding: 0;
}
a:link
{
color: #00ced1;
}
a:visited
{
color: #008000;
}
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}
button
{
background-color: transparent;
border: 1px solid #696969;
color: white;
padding: 5px 5px;
border-radius: 4px;
margin: 2px;
}
button:hover
{
background-color: transparent;
border: 1px solid #6600ff;
color: white;
padding: 5px 5px;
border-radius: 4px;
}
select, input
{
background: white;
border: 1px solid #696969 ;
border-radius: 4px;
padding-left: 2px;
width: 150px;
padding: 2px;
}
input[type="checkbox"]
{
-webkit-appearance: none;
background-color: #ffffff;
border: 1px solid #000000;
border-radius: 4px;
padding: 5px;
display: inline-block;
position: relative;
width: 17px;
height: 17px;
}
input[type="checkbox"]:checked:after
{
content: '\2714';
font-size: 14px;
position: absolute;
top: 0px;
left: 1.5px;
color: #000000;
}
.panel
{
display: none;
background-color: #222222;
padding: 7px;
border: 2px solid #696969;
border-radius: 4px;
}