-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (100 loc) · 1.9 KB
/
style.css
File metadata and controls
111 lines (100 loc) · 1.9 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
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: black;
}
.container{
background-color: black;
width: 20%;
min-width: 500px;
position: absolute;
top: 5%;
left: 35%;
padding-top: 30px;
padding-bottom: 30px;
border: 3px solid blue;
border-radius: 30px;
margin: 0 auto;
}
.outer-circle {
background-image: linear-gradient(#ff8a00, #e52e71);
height:350px;
width:350px;
border-radius:50%;
align-items: center;
display: flex;
justify-content: center;
margin-top: 10px;
cursor: pointer;
margin-left: 80px;
}
.inner-circle{
background-color: black;
height: 335px;
width: 335px;
border-radius: 50%;
align-items: center;
display: flex;
justify-content: center;
}
.timer-Display{
width: 100%;
padding: 40px 0;
color: white;
font-size: 50px;
text-align: center;
}
.buttons{
width: 85%;
margin: 40px auto 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}
.buttons button{
background-color:black;
border:2px solid white;
color: white;
height:100px;
width:100px;
border-radius:50%;
padding: 10px 20px;
font-size: 20px;
font-weight: 500;
cursor: pointer;
}
.buttons button:hover{
border:4px solid black;
background-color:white;
color: black;
font-weight: 700;
}
ol{
font-size: 25px;
color: white;
margin-top: 30px;
text-decoration: none;
margin-left: 200px;
}
#resetall{
height: 50px;
width: 180px;
font-size: 20px;
background-color:black;
border:2px solid white;
color: white;
font-weight: 500;
border-radius: 5px;
margin: 40px auto 0 auto;
cursor: pointer;
margin-left: 150px;
}
#resetall:hover{
border:4px solid black;
background-color:white;
color: black;
font-weight: 700;
}