-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (58 loc) · 1.01 KB
/
styles.css
File metadata and controls
77 lines (58 loc) · 1.01 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f3f3f3;
}
main {
margin-top: 3rem;
margin-inline: auto;
display: flex;
flex-direction: column;
gap: 2.5rem;
align-items: center;
background-color: #fff;
width: 500px;
max-width: 60%;
min-width: 400px;
border-radius: 10px;
padding: 2rem ;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5) ;
}
#button {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
button {
padding: 0.5rem 1.5rem;
color: #fff;
border: none;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5) ;
}
button:hover {
color: black;
box-shadow: 0px 0px 20px rgba(227, 31, 31, 0.5) ;
}
#start {
background-color: green;
}
#stop {
background-color: red;
}
#reset {
background-color: gray;
}
p {
font-size: 3rem;
}
.disabled {
opacity: 0.5;
cursor: not-allowed;
}