-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (84 loc) · 1.68 KB
/
style.css
File metadata and controls
86 lines (84 loc) · 1.68 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
body {
background-image: url('bg.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: #fff;
min-height: 100%;
background-color: #082032;
}
#header{
display: flex;
justify-content: center;
}
h1 {
font-size: 70px;
font-family: 'Catamaran', sans-serif;
background-color: rgba(22,22,22,0.5);
margin-top: 0;
padding: 15px;
}
#inputContainer {
display: flex;
justify-content: center;
align-items: center;
}
#inputField{
display: flex;
flex-direction: column;
align-items: center;
margin: 0px 15px;
}
label {
font-family: 'Catamaran', sans-serif;
font-size: 30px;
font-weight: 400;
margin: 10px;
background-color: rgba(22,22,22,0.5);
padding: 3px 15px;
color: #fff;
}
input{
width: 100px;
font-family: 'Catamaran', sans-serif;
font-size: 30px;
font-weight: 400;
}
.center {
display: flex;
justify-content: center;
}
#btnStart{
font-family: 'Catamaran', sans-serif;
font-size: 30px;
font-weight: 400;
color: #fff;
padding: 10px 35px;
border: 2px solid #fff;
border-radius: 5px;
background-color: rgba(22,22,22,0.5);
align-items: center;
margin: 40px 0px 0px 0px;
}
#containerCountdown {
display: flex;
justify-content: center;
}
#countdown {
font-family: 'Catamaran', sans-serif;
font-size: 50px;
font-weight: 400;
color: #fff;
padding: 15px 35px;
border: 2px solid #fff;
border-radius: 5px;
width: 200px;
background-color: rgba(22,22,22,0.5);
align-items: center;
text-align: center;
}
@media all and (max-width: 500px) {
h1 {
font-size: 40px;
}
}