-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.monitor.css
115 lines (95 loc) · 1.76 KB
/
grid.monitor.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
.body {
width: 80%;
position: absolute;
right: 10%;
}
.slider {
background-color: green;
margin-top: 0px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 30%;
height: 0.25rem;
outline: none;
border-radius: 0.25rem;
}
input[type=url] {
width: 100%;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 6px 20px 6px 10px;
margin-bottom: 10px;
}
.slider::-webkit-slider-thumb {
background-color: green;
-webkit-appearance: none;
appearance: none;
width: 1.1rem;
height: 1.1rem;
border: 0.10rem solid white;
border-radius: 1rem;
cursor: pointer;
}
.slider.disabled, .slider.disabled::-webkit-slider-thumb {
background-color: #C0C0C0;
}
.disabled {
color: #C0C0C0;
}
.panel {
width: 100%;
display: inline-block;
position: relative;
}
.panel div {
display: inline-block;
}
#rr-panel {
width: 30%;
margin-left: 10px;
}
.button.remove:hover {
background-color: red;
}
.button:hover {
cursor: pointer;
}
.button {
border: none;
height: 20px;
padding: 0px 15px;
font-size: 16px;
font-weight: 300;
margin-top: 0px;
margin-right: 5px;
}
.button.remove {
background-color: #FF9696;
color: #ffffff;
}
.button.json {
background-color: #C2EA7F;
color: #ffffff;
}
.button.json:hover {
background-color: #98D72E;
}
a {
color: black;
text-decoration: none;
}
td:nth-child(1) {
text-align: left;
}
td:nth-child(n+2) {
text-align: center;
}
table.dataTable tbody th, table.dataTable tbody td {
padding: 5px 10px 5px 0px;
}