-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (64 loc) · 1.15 KB
/
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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.main {
width: 100%;
height: 80%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.images {
display: flex;
align-items: center;
justify-content: center;
}
/* Scale canvas with resize attribute to full size */
canvas {
width: 400px;
height: 600px;
}
img {
width: 380px;
height: 480px;
border-radius: 12px;
}
.colors {
max-width: 100%;
height: 20%;
color: #fff;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}
.color-box {
width: 100px;
height: 125px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
border: 1px solid black;
padding: 4px;
}
.color-circle {
width: 84px;
height: 84px;
border-radius: 50%;
border: 1px solid black;
display: flex;
justify-content: center;
align-items: center;
}