-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.css
More file actions
44 lines (40 loc) · 721 Bytes
/
stopwatch.css
File metadata and controls
44 lines (40 loc) · 721 Bytes
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
*{
margin: 0px;
padding: 0px;
font-family:Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
body{
background-color: blueviolet;
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.box{
background-color: white;
height: fit-content;
width: fit-content;
padding: 50px;
border-radius: 60px 10px 60px 10px;
box-shadow: 5px 5px 10px white;
}
.heading{
color: brown;
text-align: center;
}
h1{
font-size: 50px;
padding-left: 16vw;
}
button{
border: none;
outline: none;
font-size: 24px;
padding: 15px;
border-radius:5px;
margin: 15px;
color:white;
cursor: pointer;
}