-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (59 loc) · 1.23 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;500;700;900&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: 0;
font-family: 'Roboto', sans-serif;
}
body {
background-color: antiquewhite;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
.container{
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
width: 600px;
height: 400px;
border-radius: 20px;
background-color: aliceblue;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.176);
}
.watch-container{
width: 100%;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
color: rgb(49, 124, 99);
}
.timerDisplay{
width: 80%;
height: 80%;
background-color: rgb(230, 237, 244);
display: flex;
justify-content: center;
align-items: center;
font-size: 90px;
border-radius: 15px;
box-shadow: 0px 0px 8px rgba(96, 96, 96, 0.475);
}
.btn {
width: 50px;
height: 50px;
cursor: pointer;
}
.startStop {
background-color: green;
}
.reset {
background-color: red;
}
.pause {
background-color: rgb(213, 194, 24);
}