-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppereance.css
94 lines (77 loc) · 1.19 KB
/
Appereance.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
body {
background-color: rgb(21, 18, 43);
}
h1 {
color: navy;
margin-left: 20px;
}
pre {
align-items: relative;
margin-top: 50px;
border: 3px solid rgb(97, 88, 88);
}
p {
text-align: left;
font-size: 28px;
}
p, label, input {
margin-top: 3px;
margin-bottom: 5px;
}
/* Content der Seite */
.mainContent {
float: center;
width: 100%;
}
/* Abicountdown Boxes */
.cdc {
align-self: center;
margin-top: 1%;
background-color: #1e90ff;
border: 3px solid rgb(97, 88, 88);
}
/* Countdown Creator Box */
#countdowncreator {
font-size: 28px;
}
/* DropDown CheckBox */
.multiselect {
width: 330px;
position: relative;
}
.selectBox {
position: relative;
}
.selectBox select {
width: 100%;
font-weight: bold;
font-size: 20px;
color: rgb(234, 233, 241);
background-color: rgb(21, 18, 43);
}
.overSelect {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
#checkboxes {
display: none;
}
#checkboxes input {
width: 60px;
font-weight: 500;
line-height: 1.5;
margin: 1px;
font-size: 20px;
}
#checkboxes input:hover {
width: 100px;
}
#checkboxes label {
display: block;
}
#checkboxes label:hover {
background-color: #1e90ff;
}