forked from johreh/gloomycompanion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (104 loc) · 2.03 KB
/
style.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body
{
margin: 0;
overflow-x: hidden;
}
.nobr
{
white-space: nowrap;
}
#container
{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
ul.tabcontainer
{
display: flex;
margin: 0;
padding: 0;
list-style: none;
}
ul.tabcontainer li
{
flex: 1 1 0;
text-align: center;
padding: 1em;
cursor: pointer;
}
ul.tabcontainer li:not(:first-child)
{
border-left: 1px solid black;
}
ul.tabcontainer .inactive
{
background-color: #CCCCCC;
}
.tabbody
{
padding: 1em;
}
.tabbody.inactive
{
display: none;
}
.selectionlist
{
list-style: none;
padding: 0;
}
.panecontainer
{
position: fixed;
top: 0;
left: 0;
max-width: 100vw;
height: 0;
z-index: 2;
}
.pane
{
position: relative;
left: 0;
height: 100vh;
overflow-x: hidden;
overflow-y: auto;
background: white;
box-shadow: 1em 0 1em rgba(0, 0, 0, 0.5);
transition: left 0.2s ease;
z-index: 1;
}
.pane.inactive
{
left: -110%; /* fallback */
left: calc(-100% - 2em);
}
#cancelarea
{
position: absolute;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: 0;
}
#settingsbtn
{
margin-left: 1em;
margin-top: 1em;
width: 5ch;
height: 5ch;
cursor: pointer;
z-index: 1;
}
#backbtn
{
position: absolute;
width: 5ch;
height: 5ch;
right: 1em;
bottom: 1em;
cursor: pointer;
}