-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (58 loc) · 1.01 KB
/
styles.css
File metadata and controls
69 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: black;
}
.button {
display: flex;
justify-content: space-between;
}
#stopButton {
background-color: red;
}
#stopButton:hover {
background-color: greenyellow;
color: black;
background-color: rgb(255, 255, 255);
}
button {
font-size: 1.2rem;
background-color: greenyellow;
border: none;
padding: 1rem 0;
font-weight: 800;
border-radius: 10px;
width: 30%;
margin: 0 auto;
color: white;
cursor: pointer;
}
button:hover {
color: black;
background-color: rgb(255, 255, 255);
box-shadow: 0px 0prgb(255, 255, 255)ba(127, 16, 16, 0.7);
}
.disabled {
opacity: 0.6;
cursor: not-allowed;
}
canvas {
box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.826);
background-image: linear-gradient(
45deg,
rgb(215, 215, 215),
rgb(235, 192, 192)
);
}
.main {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin: 10% auto;
max-width: 60%;
width: 650px;
min-width: 400px;
}