-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (113 loc) · 2.5 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&family=Roboto&display=swap');
* {
padding: 0;
margin: 0;
font-family: 'Quicksand', sans-serif;
user-select: none;
}
body {
width: 100%;
height: 100%;
background-color: #1B84AB;
}
.container {
width: 320px;
height: 570px;
background-color:azure;
margin: 30px auto;
background: rgb(85,217,209);
background: linear-gradient(145deg, rgba(85,217,209,1) 0%, rgba(176,247,228,1) 99%);
border-top-left-radius: 30px;
border-top-right-radius: 30px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.295);
}
.time-btn{
position: relative;
text-align: center;
width: 100%;
height: 100%;
display: flex;
justify-content: space-around;
font-weight: bold;
font-size: 25px;
font-family: 'Roboto', sans-serif;
border-top-left-radius: 20px;
}
.time-btn .btn {
background-color:#2CB6DC;
text-align: center;
width: 100%;
height: 100%;
text-align: center;
}
.time-btn .btn p {
margin-top: 30px;
color: white;
text-align: center;
}
.time-btn .active {
background-color: #1B84AB;
cursor: pointer;
}
.time-btn .btn:first-child {
border-top-left-radius: inherit;
}
.time-btn .btn:last-child {
border-top-right-radius: 20px;
}
.status-container,
.score-container {
background-color:rgba(255, 255, 255, 0.212);
width: 140px;
height: 50px;
margin: 50px auto;
text-align: center;
border-radius: 20px;
color: white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.301);
}
.status-container h1 {
padding: 10px 0;
}
.score-container h1 {
font-size: 20px;
padding: 10px 0;
}
.timer{
position:relative;
top: 250px;
width: 120px;
height: 50px;
margin: auto;
text-align: center;
color: white;
font-size: 40px;
font-weight: 0;
}
.topbar {
position: absolute;
width: inherit;
height: 90px;
background-color: #2CB6DC;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.status-btn{
position: relative;
text-align:center;
top: 425px;
width: 150px;
height: 70px;
display: flex;
gap: 20px;
left: 60px;
}
.status-btn p {
font-size: 40px;
text-align: center;
}
.status-btn p:hover {
cursor: pointer;
}