-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
174 lines (138 loc) · 2.52 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
body {
font-family: 'Neuton', serif;
}
.header {
position: fixed;
background-image: linear-gradient( rgba(255, 255, 255, 1) 45%, rgba(255,255,255,0) 80%);
margin-right: auto;
margin-left: auto;
width: 100%;
top: 0;
}
h1 {
text-align: center;
font-size: 160px;
font-weight: 200;
margin-top: -30px;
}
.timers {
padding-top: 170px;
}
.timer {
margin-bottom: 25px;
box-shadow: 8px 8px 8px rgb(172, 172, 172);
text-align: center;
border: solid 1px #000;
padding-bottom:25px;
padding-top: 15px;
border-radius: 500px;
max-width: 1150px;
margin-left: auto;
margin-right: auto;
}
.timer .timeel {
display: inline-block;
color: black;
font-size: 64px;
font-weight: 200;
margin-top: -10px;
}
.timer .text {
padding-right: 35px;
}
.timer .text:last-child {
padding-right: 10px;
}
.timer .number {
padding-right: 20px;
}
.timer span[class*="timeRef"] {
color: black;
}
.timer p {
font-size: 18px;
font-weight: 300;
}
.controls {
margin-top: 20px;
}
button {
font-family: inherit;
font-size: 16px;
font-weight: 200;
padding-bottom: 1px;
margin-right: 25px;
background-color: #f9f9f9;
border-radius: 5px;
}
button: last-child {
margin-right: 0px;
}
.add-timer {
/* margin-top: 120px; */
position: fixed;
bottom: 0;
width: 100%;
margin-right: auto;
margin-left: auto;
text-align:center;
background-color: #fff;
font-size: 20px;
font-weight: 300;
}
.footer-div {
border-top: solid 1px #000;
padding-top: 30px;
padding-bottom: 5px;
width: 90%;
margin-right: auto;
margin-left: auto;
}
textarea:focus,
input:focus {
outline: none;
}
.wrapper{
float: left;
width: 65%;
text-align: right;
}
.add-timer label {
margin-right: 5px;
}
.add-timer span {
margin-left: 5px;
padding-right: 20px;
}
.add-timer input {
padding: 5px 5px 0px 5px;
width: 500px;
border: none;
border-bottom: solid 1px #000;
font-size: 24px;
font-family: 'Neuton', serif;
font-weight: 200;
}
.add-timer div {
margin-bottom:25px;
}
.custom-time-input input {
width: 5%;
text-align: right;
}
.custom-time-input span {
margin-right: 15px;
}
.custom-time-input span:last-child {
margin-right: -15px;
}
.add-button input {
width: 90px;
border: none;
filter: drop-shadow(2px 4px 3px rgb(172, 172, 172));
}
.add-button {
float: right;
width: 30%;
text-align: left;
}