-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (90 loc) · 1.95 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
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html * {
margin: 0;
padding: 0;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html *::before, html *::after {
margin: 0;
padding: 0;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html body {
font-family: 'Montserrat', sans-serif;
}
:root {
--gradient-light: linear-gradient(145deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .25));
--gradient-dark: linear-gradient(145deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .25));
--not-black: #3f4142;
--primary: #3f82d7;
--success: #28e470;
--light: #d3d7e0;
}
#table-scroll {
position: relative;
overflow: hidden;
}
.hide {
display: none;
}
nav.chrome-live {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: .6em;
background: rgba(101, 137, 173, 0.26);
background-image: var(--gradient-dark);
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
nav.chrome-live .logo {
width: 200px;
height: 50px;
background: url("./img/chromelive.svg") no-repeat;
background-size: contain;
background-position: center;
}
nav.chrome-live .heading {
margin-left: auto;
color: var(--light);
}
nav.chrome-live .heading select#data_type {
color: #fff;
background-color: transparent;
border-color: #a7aaac;
-webkit-box-shadow: 0 0 0 0.2rem #475c70;
box-shadow: 0 0 0 0.2rem #475c70;
}
nav.chrome-live .heading select#data_type option {
color: #000;
}
.clone {
position: absolute;
top: 0;
left: 14px;
width: 200px;
color: #313030;
overflow: hidden;
}
.clone th,
.clone td {
visibility: hidden;
border-color: transparent;
}
.clone tbody th {
visibility: visible;
}
.clone .fixed-side {
border: 1px solid #adadad;
background: #eee;
visibility: visible;
}
/*# sourceMappingURL=style.css.map */