-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.module.css
59 lines (49 loc) · 994 Bytes
/
index.module.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
.header {
align-items: center;
white-space: nowrap;
line-height: 32px;
}
.title a:not(:hover) {
color: inherit !important;
}
.extra {
--visibility-transition-duration: 100ms;
}
.button {
padding: 4px 8px !important;
}
.visible {
visibility: visible;
opacity: 1;
transition: opacity var(--visibility-transition-duration) linear;
}
.hidden {
visibility: hidden;
opacity: 0;
transition:
visibility 0s var(--visibility-transition-duration),
opacity var(--visibility-transition-duration) linear;
position: absolute;
right: 24px;
}
.divider {
margin-left: 0 !important;
}
.item {
display: block !important;
text-align: center;
padding-left: 0 !important;
padding-right: 0 !important;
}
.item:first-of-type {
padding-top: 0 !important;
}
.item:last-of-type {
padding-bottom: 0 !important;
}
.outer {
box-shadow:
rgba(0, 0, 0, 0.06) 0 2px 4px 0,
rgba(0, 0, 0, 0.06) 0 2px 12px -1px,
rgba(0, 0, 0, 0.06) 0 4px 8px 0 !important;
}