-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.css
96 lines (77 loc) · 1.39 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
body {
background-color: #222;
overflow: hidden;
color: #555;
font-size: 0.85em;
/* -webkit-app-region: drag; */
}
@font-face {
font-family: "Main";
src: url('helvetica.ttf');
}
#title-bar {
background-color: #222;
-webkit-app-region: drag;
/* height: 32px; */
width: 100%;
}
#title {
display: inline-block;
width: 70%;
}
#title-bar-btns {
display: inline-block;
-webkit-app-region: no-drag;
width: 29%;
color: #eee;
}
.container {
user-select: none;
font-family: "Ubuntu", sans-serif;
}
#nextSteps {
color: #777;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#timer {
color: #eee;
}
#timer-state-active {
-webkit-app-region: no-drag;
font-size: 32vw;
}
#timer-state-settingProjectName {
-webkit-app-region: no-drag;
font-size: 4vw;
}
textarea {
background-color: #222;
color: #eee;
width: 100%;
height: 6vw;
text-align: center;
resize: none;
overflow: hidden;
border-right: 4px #eee;
border-top: 4px #eee;
border-left: 4px #eee;
}
textarea::selection {
background-color: #777;
}
button:focus {
outline: none;
}
.btn-default {
background-color: #eee;
color: #222;
}
input, button, textarea, :focus {
outline: none;
}