-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (39 loc) · 842 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #f5f5f5;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
margin: 0;
min-height: 100vh;
}
canvas {
border: 2px solid rgb(127, 81, 174);
}
.toolbox {
background-color: rebeccapurple;
border: 1px solid rebeccapurple;
display: flex;
padding: 1rem;
width: 804px;
}
.toolbox > * {
background-color: #fff;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 2rem;
padding: 0.25rem;
margin: 0.25rem;
height: 50px;
width: 50px;
}
.toolbox > *:last-child {
margin-left: auto;
}