forked from jarrodek/ChromeRestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
79 lines (68 loc) · 1.32 KB
/
Copy pathmain.css
File metadata and controls
79 lines (68 loc) · 1.32 KB
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
body {
font-family: Roboto, sans-serif;
color: #333;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
}
html,
body {
min-height: 100%;
height: 100%;
}
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: local('Material Icons'), local('MaterialIcons-Regular'), url(/assets/MaterialIcons-Regular.woff2) format('woff2');
}
body .loader {
display: none;
}
body[unresolved] .loader {
display: flex;
height: 100%;
align-items: center;
}
.mainPages > * {
min-height: 100%;
height: 100%;
}
.offline-toast {
background-color: #FDD835;
color: #000;
}
#drawerResizer {
position: absolute;
bottom: 0;
top: 0;
right: 0;
width: 3px;
background-color: transparent;
cursor: ew-resize;
transition: width 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
#drawerResizer:hover {
background-color: #BDBDBD;
width: 6px;
}
.app-name {
font-family: 'Roboto', 'Noto', sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.drawer-toggle-button {
display: inline-block !important;
}
.drawer-pin {
display: none;
}
.drawer-pin.visible {
display: inline-block;
}