-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.css
More file actions
57 lines (48 loc) · 975 Bytes
/
stopwatch.css
File metadata and controls
57 lines (48 loc) · 975 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
45
46
47
48
49
50
51
52
53
54
55
56
57
* {
margin: 0%;
padding: 0%;
}
h1{
color:white;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 50px;
padding-top: 100px;
}
.container {
height: 100vh;
background:linear-gradient(to right,#ddd6f3 , #faaca8);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.clock {
color: #fff;
font-size: 4rem;
padding: 3rem;
}
.bttn{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
a{
color:black;
text-decoration: none;
}
button {
padding: 1.25rem;
width: 200px;
border: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
background-color: white;
margin: 10px;
cursor: pointer;
font: 100 1.5rem sans-serif;
border-radius: 50px;
}
button:hover {
background-color: rgb(50, 50, 50);
color: #fff;
}