-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.css
116 lines (98 loc) · 1.51 KB
/
client.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
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
#title {
height: 40px;
display: flex;
background-color: var(--primary-color);
justify-content: center;
align-items: stretch;
color: white;
box-shadow: white 0 0 3px;
position: relative;
z-index: 1;
}
#title h1,
#title .close {
display: flex;
justify-content: center;
align-items: center;
}
#title-img {
max-width: 20px;
margin-right: 4px;
}
#title h1 {
flex: 1;
font-size: 16px;
margin: 0;
}
#title .close {
padding: 0 14px;
cursor: pointer;
}
#title .close:hover {
background-color: white;
color: var(--primary-color);
}
#title .menu {
position: relative;
}
#title .menu .button {
display: block;
padding: 10px 14px;
}
#title .menu .button:hover {
background-color: white;
color: var(--primary-color);
}
#title .menu-list {
display: none;
position: absolute;
left: 0;
top: 100%;
background: var(--primary-color);
list-style: none;
padding: 0;
margin: 0;
}
#title .menu-list li {
display: block;
}
#title .menu-list li a {
display: block;
padding: 10px 20px;
cursor: pointer;
}
#title .menu-list li a:hover {
background-color: white;
color: var(--primary-color);
}
#title .menu:hover .menu-list {
display: block;
}
#main {
flex: 1;
width: 100%;
}
#reveal-cover {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 10;
}
@media print {
#title,
#reveal-cover {
display: none !important;
}
}