-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 793 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(to right, rgb(248, 244, 244), crimson);
}
.title {
font-size: 50px;
text-align: center;
margin: 10% 0 50px 0;
}
.stopwatch {
display: grid;
justify-content: center;
}
.display {
grid-row: 1;
text-align: center;
font-size: 50px;
background-color: white;
border-radius: 5px;
border: solid 2px black;
margin-bottom: 5px;
width: 450px;
}
.buttons {
text-align: center;
}
button {
grid-row: 2;
height: 50px;
width: 147px;
border: solid 2px black;
border-radius: 5px;
background-color: white;
cursor: pointer;
font-size: 20px;
}
button:hover {
background-color: crimson;
color: white;
}