-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (56 loc) · 961 Bytes
/
styles.css
File metadata and controls
64 lines (56 loc) · 961 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
58
59
60
61
62
63
64
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 100px;
background-color: #000;
width: 650px;
max-width: 60%;
min-width: 450px;
margin-inline: auto;
padding: 2rem;
border-radius: 10px;
box-shadow: 0px 0px 50px rgba(250, 235, 215, 0.8);
color: #fff;
}
h1 {
padding: 1rem;
font-size: 2.5rem;
}
#timerReading {
font-size: 2.5rem;
padding: 1rem;
}
.buttons {
display: flex;
gap: 2rem;
}
button {
border: none;
font-size: 1.5rem;
padding: 1rem;
color: #fff;
font-weight: 700;
background-color: rgb(76, 0, 255);
border-radius: 15px;
cursor: pointer;
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.8);
}
button:hover {
box-shadow: 0px 0px 50px rgba(246, 241, 241, 0.8);
font-weight: 900;
}
.disabled {
opacity: 0.5;
cursor: not-allowed;
}