blob: cdb4865577c4262d86236de4ac96150440ab7c2e (
plain) (
blame)
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
|
@import '../video.js/dist/video-js.css';
body {
padding: 20px;
@media screen and (max-width: 400px) {
padding: 3px;
}
}
menu {
@media screen and (max-width: 600px) {
margin-right: 3px !important;
padding: 3px !important;
min-height: 400px !important;
}
min-height: 600px;
margin-right: 20px;
border-right: 1px solid rgba(0, 0, 0, 0.2);
.panel-block:not(:last-child) {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-button {
margin: 8px;
cursor: pointer;
transition: margin 0.2s;
&:hover {
margin-left: 15px;
}
a {
color: #333333;
}
}
.glyphicon {
margin: 5px;
}
}
.table-column-id {
width: 200px;
}
[hidden] {
display: none !important;
}
input.readonly {
/* Force blank on readonly inputs */
background-color: #fff !important;
}
footer {
border-top: 1px solid rgba(0, 0, 0, 0.2);
padding-top: 10px;
text-align: center;
font-size: small;
margin-top: 30px;
}
|