-
Notifications
You must be signed in to change notification settings - Fork 7
/
ui.css
96 lines (85 loc) · 1.62 KB
/
ui.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
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 120px;
}
.navbar {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
padding-top: 20px;
padding-bottom: 20px;
color: #555753;
text-align: center;
background-color: #eeeeec;
}
.footer p {
margin-bottom: 0;
}
.footer a {
color: #000000;
}
@media (min-width:768px) {
.footer {
text-align: left;
}
}
.btn-toolbar .btn {
margin-bottom: 5px;
}
.btn-options .btn {
margin-bottom: 5px;
}
@media (any-hover: none) {
#button-preview {
display: none;
}
}
.table-medium > thead > tr > th,
.table-medium > tbody > tr > th,
.table-medium > tfoot > tr > th,
.table-medium > thead > tr > td,
.table-medium > tbody > tr > td,
.table-medium > tfoot > tr > td {
padding: 5px;
font-size: 12px;
}
.table-small > thead > tr > th,
.table-small > tbody > tr > th,
.table-small > tfoot > tr > th,
.table-small > thead > tr > td,
.table-small > tbody > tr > td,
.table-small > tfoot > tr > td {
padding: 3px;
font-size: 10px;
}
.table-smaller > thead > tr > th,
.table-smaller > tbody > tr > th,
.table-smaller > tfoot > tr > th,
.table-smaller > thead > tr > td,
.table-smaller > tbody > tr > td,
.table-smaller > tfoot > tr > td {
padding: 2px;
font-size: 8px;
}
.table-smallest > thead > tr > th,
.table-smallest > tbody > tr > th,
.table-smallest > tfoot > tr > th,
.table-smallest > thead > tr > td,
.table-smallest > tbody > tr > td,
.table-smallest > tfoot > tr > td {
padding: 2px;
font-size: 6px;
}
.bi {
display: inline-block;
vertical-align: text-bottom;
}