-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (47 loc) · 828 Bytes
/
styles.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
input[type='file'] {
display: none;
}
.custom-file-picker {
border: 1px solid #ccc;
padding: 6px 12px;
cursor: pointer;
background-color: white;
border-radius: 10px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 10px;
visibility: hidden;
}
.canvas-container {
align-self: stretch;
display: flex;
justify-content: space-around;
align-items: center;
visibility: hidden;
position: absolute;
}
.canvas-container > button {
border: 1px solid #ccc;
padding: 6px 12px;
cursor: pointer;
background-color: white;
border-radius: 10px;
}
#canvas-editor {
width: 500px;
height: 500px;
}
#canvas-result {
width: 500px;
height: 500px;
}
.blurred {
filter: blur(20px);
}
body {
background-color: rgb(255, 219, 219);
}