-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (76 loc) · 1.7 KB
/
styles.css
File metadata and controls
86 lines (76 loc) · 1.7 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@import "reset.css";
body {
display: flex;
gap:20px;
justify-content: space-between;
align-items: flex-start;
background-color: #f6f9fc;
padding:20px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
canvas {
width:700px;
height:700px;
background-color: white;
border-radius:10px;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
body {
display: flex;
justify-content: center;
align-items: center;
}
.btns {
display: flex;
flex-direction: column;
gap:20px;
}
.color-options {
display: flex;
flex-direction: column;
gap:20px;
align-items: center;
}
.color-option {
width:50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
border:2px solid white;
transition:transform ease-in-out .1s;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.color-option:hover {
transform: scale(1.2);
}
input#color {
background-color: white;
}
button,
label {
all:unset;
padding:10px 0px;
text-align: center;
background-color:royalblue;
color:white;
font-weight: 500;
cursor: pointer;
border-radius: 10px;
transition: opacity linear .1s;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
button:hover {
opacity: 0.85;
}
input#file {
display: none;
}
input#text {
all:unset;
padding:10px 0px;
border-radius: 10px;
font-weight: 500;
text-align: center;
background-color:white;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}