-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
40 lines (40 loc) · 739 Bytes
/
Copy pathmain.css
File metadata and controls
40 lines (40 loc) · 739 Bytes
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
.hide {
display: none;
}
.column-large {
width: 55%;
}
.column-medium {
width: 20%;
}
.column-small {
width: 5%;
}
.select-style {
display: inline-block;
color: #262626;
background: #f2f2f2;
border: 1px solid #b3b3b3;
border-radius: 0.25rem;
padding: 0.5rem;
box-sizing: border-box;
width: 100%;
height: auto;
font: 400 1rem/1.5em "Noto Sans";
outline: none;
vertical-align: middle;
}
.select-style select {
width: 100%;
border: none;
box-shadow: none;
background-color: transparent;
background-image: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
z-index: 2;
}
.select-style select:focus {
outline: none;
}