forked from CultureHQ/add-to-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (52 loc) · 1000 Bytes
/
styles.css
File metadata and controls
60 lines (52 loc) · 1000 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.chq-atc {
display: inline-block;
position: relative;
}
.chq-atc--button {
background: transparent;
border: 0;
border-radius: 5px;
box-sizing: border-box;
color: #6a89af;
cursor: pointer;
display: inline;
font-family: inherit;
font-size: inherit;
line-height: inherit;
margin: 0;
outline: none;
padding: 4px 10px;
}
.chq-atc--button:focus {
background-color: #eaeaea;
}
.chq-atc--button:hover {
background-color: #eaeaea;
}
.chq-atc--button svg {
vertical-align: text-bottom;
}
.chq-atc--button path {
fill: #6a89af;
}
.chq-atc--dropdown {
background-color: white;
border-radius: 5px;
border: 1px solid #eaeaea;
box-shadow: .5px .5px 3px rgba(0, 0, 0, .2);
box-sizing: border-box;
position: absolute;
text-align: left;
white-space: nowrap;
width: 100%;
z-index: 1;
}
.chq-atc--dropdown a {
color: #6a89af;
display: block;
padding: 8px 15px;
text-decoration: none;
}
.chq-atc--dropdown a:hover {
background-color: #eaeaea;
}