-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
octobox.css
66 lines (59 loc) · 1.28 KB
/
octobox.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
#octobox-login{
background-color: var(--color-canvas-default);
border-top: solid 1px var(--color-border-muted);
bottom: 0;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
display: block;
padding: 10px 20px 10px 20px;
position: fixed;
left: 10px;
text-align: center;
z-index: 99999;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
}
#octobox-login img{
margin-right: 10px;
position: relative;
top: 3px;
}
.octobox {
background-color: var(--color-canvas-default);
border-top: solid 1px var(--color-border-muted);
bottom: 0;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
display: block;
font-size: 30px;
padding: 1px 4rem 10px;
position: fixed;
left: 0;
width: 100%;
text-align: center;
z-index: 99999;
}
.octobox .btn.disable {
opacity: 0.5;
pointer-events: none;
}
.dark.octobox img, #octobox-login.dark img{
filter: invert(97%) sepia(12%) saturate(241%) hue-rotate(214deg) brightness(116%) contrast(87%);
}
.octobox .btn img{
display: inline-block;
background-repeat: no-repeat;
background-position: center center;
margin-right: 8px;
width: 16px;
height: 20px;
vertical-align: middle;
}
#octobox-next img{
margin-left: 8px;
margin-right: 0;
}
#octobox-logo{
display: inline-block;
height: 20px;
position: absolute;
left: 20px;
}