-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathselect-sync.css
More file actions
39 lines (39 loc) · 994 Bytes
/
select-sync.css
File metadata and controls
39 lines (39 loc) · 994 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
body * {
box-sizing: border-box;
}
#select-sync.select-sync-container {
display: inline-flex;
align-items: center;
align-content: flex-start;
width: 100%;
}
#select-sync .select-flex-container {
display: inline-flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
width: calc(100% - 2.3em);
margin: auto;
}
#select-sync .custom-select {
display: inline-block;
height: calc(2.25rem + 2px);
padding: .375rem 1.75rem .375rem .75rem;
line-height: 1.25;
color: #464a4c;
vertical-align: middle;
background: #fff url(double-arrow.svg) no-repeat right .75rem center;
-webkit-background-size: 8px 10px;
background-size: 8px 10px;
border: 1px solid rgba(0,0,0,.15);
border-radius: .25rem;
-moz-appearance: none;
-webkit-appearance: none;
font-size: 1.1em;
margin: 0.1em;
}
#select-sync button{
font-size: 1.5em;
height: calc(2.15rem + 2px);
}