-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (77 loc) · 1.27 KB
/
style.css
File metadata and controls
95 lines (77 loc) · 1.27 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
* {
font-size: 32px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}
body {
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
margin-bottom: 0;
}
h1 {
font-size: 50pt;
border-bottom: 1px solid black;
font: lighter 50pt 'Segoe UI', Verdana, sans-serif;
}
canvas#timer {
padding: 10px;
height: 500px;
}
@media only screen and (max-width: 500px) {
canvas#timer {
height: initial;
width: 100%;
}
}
form * {
line-height: 2em;
}
input[type=number] {
padding: 0 0 0 .5em;
width: 2.25rem;
}
#fs {
background-color: white;
display: inline-block;
}
#timeText {
text-align: center;
}
.buttons {
margin-top: 1rem;
}
#exitFS {
display: none;
}
footer {
width: 100%;
margin: 1rem 0 0;
background-color: #ddd;
text-align: center;
padding: 1rem;
}
footer * {
font-size: 12pt;
}
/* Style for fullscreen app */
#fs:fullscreen {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
width: 100%;
}
#fs:fullscreen canvas#timer {
height: 80%;
}
#fs:fullscreen #timeText {
font-size: 3rem;
}
#fs:fullscreen #exitFS {
display: initial;
}
/* Icons */
.ico-gh {
background: url("https://github.githubassets.com/favicons/favicon.png");
}