-
Notifications
You must be signed in to change notification settings - Fork 2
/
chronos.css
99 lines (84 loc) · 1.49 KB
/
chronos.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
/*
* This file is part of Chronos. The LICENSE file at the top level of
* this repository contains the full copyright notices and license terms.
*/
@media screen and (min-device-width: 768px) and (max-width: 768px) {
body {
height: 600px;
width: 400px;
}
}
body {
padding-top: 50px;
overflow-x: hidden;
}
.navbar {
margin-bottom: 0px;
}
#selectEmployee {
height: 48px;
display: initial;
width: auto;
}
#date {
cursor: pointer;
}
#lines {
margin-bottom: 90px;
table-layout: fixed;
}
#duration {
width: 20%;
}
#lines > tbody > tr {
cursor: pointer;
}
#lines > tbody > tr > td:first-child,
#lines > tfoot > tr > th:first-child {
text-align: right;
}
#lines td {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#counter {
background-color: #f5f5f5;
display: flex;
font-size: 32px;
justify-content: space-between;
padding: 20px;
}
.btn-circle {
border-radius: 15px;
font-size: 12px;
height: 30px;
line-height: 1.42857;
padding: 6px 0;
text-align: center;
width: 30px;
}
.btn-circle.btn-lg {
border-radius: 25px;
font-size: 18px;
height: 50px;
line-height: 1.33;
padding: 10px 16px;
width: 50px;
}
.fixed-bottom {
bottom: 0;
left: 0;
position: fixed;
right: 0;
}
.fixed-bottom-right {
bottom: 20px;
position: fixed;
right: 20px;
}
.fixed-bottom-left {
bottom: 20px;
left: 20px;
position: fixed;
}