-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (115 loc) · 2.1 KB
/
Copy pathstyle.css
File metadata and controls
135 lines (115 loc) · 2.1 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body {
font-family: sans-serif;
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
background: #f4f4f9;
}
h1 {
text-align: center;
color: #333;
}
/* The Local Time Clock */
.clock-display {
text-align: center;
font-size: 1.5rem;
color: #777;
margin-bottom: 1rem;
font-variant-numeric: tabular-nums; /* Prevents jittering as numbers change */
}
/* The Timer Box */
.timer-controls {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
margin-bottom: 2rem;
}
#timer-display {
font-size: 4rem;
font-family: monospace;
color: #333;
margin: 1rem 0;
display: block;
}
button {
padding: 10px 20px;
font-size: 1.2rem;
cursor: pointer;
border: none;
border-radius: 4px;
}
.btn-start {
background: #28a745;
color: white;
}
.btn-stop {
background: #dc3545;
color: white;
}
/* The List */
table {
width: 100%;
border-collapse: collapse;
background: white;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background: #eee;
}
input.edit-input {
width: 100%;
padding: 5px;
border: 1px solid transparent;
}
input.edit-input:focus {
border: 1px solid #007bff;
background: #fff;
}
.dashboard {
background: white;
padding: 1rem;
border-radius: 8px;
margin-bottom: 2rem;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.filters {
display: flex;
gap: 1rem;
align-items: center;
margin-bottom: 1rem;
border-bottom: 1px solid #eee;
padding-bottom: 1rem;
}
.stats {
display: flex;
gap: 2rem;
}
.stat-box {
flex: 1;
}
.stat-box h3 {
margin-top: 0;
color: #555;
font-size: 1rem;
text-transform: uppercase;
}
#project-breakdown {
list-style: none;
padding: 0;
}
#project-breakdown li {
display: flex;
justify-content: space-between;
border-bottom: 1px dashed #eee;
padding: 4px 0;
}
#project-breakdown span.p-name {
font-weight: bold;
}