-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (47 loc) · 1.04 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
/* imported font family from google */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {
background-color: #EBF4FA
}
/* main title css */
.title{
margin-top: 10vh;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
text-decoration: underline;
color: #040720;
}
/* stopwatch container */
.container {
background-color: #040720;
width: 50% !important;
margin-top: 5vh;
font-size: 10vw;
font-family: 'Lato', sans-serif;
border-radius: 40px;
box-shadow: 1px 1px 11px 8px grey;
}
/* stopwatch-buttons */
.buttons {
font-family: 'Lato', sans-serif;
}
.buttons button {
box-shadow: 1px 1px 8px 4px rgb(112, 106, 106);
}
/* media-query for less than equal 830 px */
@media screen and (max-width:830px) {
.count-down {
position: relative;
top: 3vh;
}
.buttons {
position: relative;
top: 2vh;
flex-direction: column;
}
.btn {
margin-bottom: 4vh;
}
}