-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (85 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (85 loc) · 1.85 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
:root {
color-scheme: light dark;
--fg: light-dark(black, white);
--bg: light-dark(white, black);
--gray: #555555;
--red: #CC0000;
--green: #6AA84F;
}
/* generic reusable classes */
.button {
border: 1px solid var(--fg);
width: fit-content;
padding: 5px;
box-sizing: border-box;
}
.row {
display: flex;
flex-direction: row;
justify-content: space-between;
column-gap: 5px;
}
.underlined { border-bottom: 1px solid black; }
.center { text-align: center; }
/* specific element styles */
body {
background-color: var(--bg);
color: var(--fg);
font-family: monospace;
padding: 0;
margin: 0;
}
.projects-container {
margin: 5px;
display: flex;
flex-direction: column;
row-gap: 5px;
}
.projects-header {
border-bottom: 4px solid var(--fg);
padding-bottom: 5px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.projects-count::before {
content: "total projects: ";
}
.projects-list {
display: flex;
flex-direction: column;
row-gap: 5px;
}
.project-container {
display: flex;
flex-direction: column;
row-gap: 5px;
padding-bottom: 5px;
border-bottom: 4px solid var(--fg);
}
.project-name-input {
border: 1px solid var(--fg);
margin: 0px;
padding: 3px;
text-align: center;
font-family: monospace;
font-size: inherit;
background-color: var(--bg);
box-sizing: border-box;
flex-grow: 1;
}
.toggle-button { color: white; }
.toggle-button[running="true"]::before { content: "started"; }
.toggle-button[running="false"]::before{ content: "stopped";}
.toggle-button[running="true"] {
background-color: var(--green);
border-color: var(--green);
}
.toggle-button[running="false"] {
background-color: var(--red);
border-color: var(--red);
}
.cancel-button[running="false"] { visibility: hidden; }
.reset-button { margin-left: auto; }
.time { font-size: 175%; }