-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (106 loc) · 1.98 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**Allgemein**/
html {
font-family: sans-serif;
}
/*************/
#container {
display: flex;
justify-content: center;
flex-direction: row;
height: 20vh;
width: 100%;
}
#checkboxen {
display: flex;
flex-direction: row;
margin: 9px;
}
div[id*='checkbox-']{
display: flex;
justify-content: center;
flex-direction: row;
font-family: sans-serif;
font-weight: bold;
font-size: 14px;
font-weight: 500px;
color: #0648B3;
}
#checkbox-1 {
width: 33.33%;
height: 9px;
padding: 24px;
align-items: center;
border-style: solid;
border-radius: 20px 0px 0px 20px;
border-color: #0648B3;
background-color: white;
color: #0648B3;
border-width: 1px;
}
#checkbox-1:hover {
background-color: aliceblue;
cursor: pointer;
}
#text-1:hover {
cursor: pointer;
}
#checkbox-2 {
width: 33.33%;
height: 9px;
padding: 24px 20px 24px 20px;
align-items: center;
border-style: solid;
border-radius: 0px 0px 0px 0px;
border-color: #0648B3 rgba(255, 255, 255, 0) #0648B3 rgba(255, 255, 255, 0);
border-width: 1px;
}
#checkbox-2:hover {
background-color: aliceblue;
cursor: pointer;
}
#text-2:hover {
cursor: pointer;
}
#checkbox-3 {
display: flex;
width: 33.33%;
height: 9px;
padding: 24px;
align-items: center;
border-style: solid;
border-radius: 0px 20px 20px 0px;
border-color: #0648B3;
border-width: 1px;
}
#checkbox-3:hover {
background-color: aliceblue;
cursor: pointer;
}
#text-3:hover {
cursor: pointer;
}
div[id*='box-']{
display: flex;
flex-direction: row;
}
input[type="checkbox"] {
-webkit-appearance: none;
-moz-appearance: none;
}
/**NOT CHECKBOX**/
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#navbar > ul {
display: flex;
flex-direction: row;
background-color: #0648B3;
font-weight: bold;
color: white;
}
li[id*='item-']{
margin: 1em;
}
/****************/