-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
executable file
·91 lines (90 loc) · 1.65 KB
/
mystyle.css
File metadata and controls
executable file
·91 lines (90 loc) · 1.65 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
:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
:root { font-family: 'Inter var', sans-serif; }
}
body {
background-color: black;
}
.clock{
display: block;
height: 100%;
width: 100%;
margin: 50 auto;
}
.HtmlIsland{
/*outline: solid 1px yellow;
outline-offset: -1px;*/
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.timerText{
/*outline: solid 1px orange;
outline-offset: -1px;*/
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 320px;
font-weight: 200;
text-align: center;
height:360px;
margin-top: 0px;
margin-right: 0px;
font-feature-settings: "tnum";
}
input[type=text] {
/*outline: solid 1px orange;
outline-offset: -1px;*/
background-color: #404040;
color: white;
font-size: 360px;
font-weight: 100;
height:360px;
margin-top: 0px;
margin-right: 0px;
font-feature-settings: "tnum";
}
.buttonArea{
display: flex;
align-items: center;
justify-content: center;
font-weight: 100;
text-align: center;
height:120px;
margin-top: 0px;
margin-right: 0px;
font-feature-settings: "tnum";
}
.button{
width: 240px;
height: 80px;
line-height: 80px;
cursor: pointer;
font-size: 64px;
font-weight: 200;
border: solid;
border-radius: 40px;
margin-left: 10px;
margin-right: 10px;
color: white;
background-color:black;
}
#startButton{
color: #006000;
}
#startButton:hover{
color: #00a000;
}
#stopButton{
color: darkred;
}
#stopButton:hover{
color: red;
}
#resetButton{
color: #404040;
}#resetButton:hover{
color: gray;
}