-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (59 loc) · 1.19 KB
/
style.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
noscript {
color: red;
}
#clockspawn .timerBody {
border: 3px solid #dd0606;
margin: 5px;
padding: 5px;
text-align: center;
}
.add {
background-color: #1d4203;
}
.destroy {
background-color: #940303;
}
button, input {
border-radius: 10px;
}
button {
border-style: none;
}
.add, .destroy{
color: var(--fg)
}
input, button, .rsz {
line-height: 2;
}
div.ts {
display: flex;
justify-content: center;
}
input[name="nameOfTimer"], div.ts, button {
width: 100%;
}
input[type="number"] {
text-align: right;
width: 2.2rem;
}
p.copy {
text-align: center;
}
* {
--appcolor: #66f109;
--fg: #dddddd;
--bg: #1a1a1a;
}
body, input {
background-color: var(--bg);
color: var(--fg);
}
.noselect, .copy {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}