-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
137 lines (119 loc) · 2.25 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* general styles */
* {
font-family: "Open Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
font-variation-settings: "wdth" 100;
}
h1 {
margin: 20px 0 20px 0;
}
/* flex container */
#flex-container {
margin: 2rem 4rem;
display: flex;
justify-content: center;
}
/* instruments panel */
#instruments-panel {
background-color: #CFDCE9;
padding: 0 1rem 1rem 1rem;
color: white;
width: 24rem;
height: auto;
}
#instruments-panel h1 {
color: #21314d;
}
.instrument {
background-color: #21314d;
margin: 1px;
height: auto;
padding: 3px 10px;
transition: 0.3s;
}
.greyed-out {
background-color: #a0a0a0;
pointer-events: none;
cursor: default;
transition: 0.2s;
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* criteria panel*/
#criteria-panel {
color: #21314d;
width: 128rem;
margin-left: 2rem
}
.criteria-container {
display: flex;
justify-content: left;
flex-wrap: wrap;
gap: 8px;
}
.criteria-group {
width: 14rem;
background-color: #CFDCE9;
padding: 12px 12px 24px 12px;
}
.criteria-group h3 {
margin: 0 0 8px 0;
font-size: 20px;
font-weight: 700;
}
/* custom checkboxes */
.checkbox-container {
font-size: 16px;
display: flex;
gap: 4px;
}
.checkbox-container span {
padding-top: 2px;
user-select: none;
-moz-user-select: none;
-webkit-text-select: none;
-webkit-user-select: none;
}
input[type="checkbox"] {
appearance: none;
background-color: #fff;
padding: 4px;
color: #21314d;
min-width: 20px;
height: 20px;
border: 2.5px solid #21314d;
border-radius: 2px;
cursor: pointer;
transition: 0.4s;
}
input[type="checkbox"]:hover {
background-color: #879EC3;
transition: 0.3s;
}
input[type="checkbox"]:checked {
background-color: #21314d;
}
button {
margin-top: 20px;
cursor: pointer;
border: 2px solid #21314d;
background-color: white;
color: #21314d;
padding: 8px;
font-size: medium;
border-radius: 4px;
transition: 0.4s;
}
button:hover {
background-color: #21314d;
color: white;
cursor: pointer;
transition: 0.3s;
}