-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (59 loc) · 1012 Bytes
/
style.css
File metadata and controls
69 lines (59 loc) · 1012 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
65
66
67
68
69
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: peachpuff;
}
canvas {
border: 2px solid rgb(247, 77, 77);
margin: 5px;
background-color: white;
}
.toolbox {
background-color: rgb(68, 92, 230);
border: none;
display: flex;
width: 554px;
padding: 1rem;
border-radius: 5px;
}
.toolbox>* {
background-color: white;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
height: 50px;
width: 50px;
margin: 0.25rem;
cursor: pointer;
}
.toolbox>*:last-child {
margin-left: auto;
width: 75px;
}
button {
transition: all 0.2s ease;
}
button:focus {
outline: none;
}
button:active {
transform: scale(0.95);
}
input:focus {
outline: none;
}
button,
input,
span {
border-radius: 5px;
}