-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
121 lines (121 loc) · 1.95 KB
/
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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
font-family: 'Poppins', sans-serif;
background-color: #E7F1F1;
display: flex;
margin: 0;
}
.left-side {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 60px;
height: 100vh;
width: 70%;
position: fixed;
border-right: 6px solid black;
}
.right-side {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 30%;
position: absolute;
right: 0;
overflow-y: scroll;
}
.right-side h2 {
margin-top: 100px;
font-size: 3vw;
}
.delete-button {
width: 10%;
aspect-ratio: 1 / 1;
margin-left: 20px;
}
container {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
h1 {
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 6vw;
}
.color-palette {
display: flex;
width: 85%;
aspect-ratio: 6 / 1;
justify-content: space-evenly;
}
.color-box {
width: 80%;
aspect-ratio: 1 / 1;
border: 4px solid black;
display: flex;
justify-content: flex-end;
align-items: flex-end;
position: relative;
}
p {
font-size: 1.5vw;
margin-block-start: 0.5em;
margin-block-end: 0.5em;
}
.new-palette-button,
.save-palette-button {
color: white;
font-size: 1.5vw;
font-weight: 200;
font-family: 'Poppins', sans-serif;
padding: 3px;
aspect-ratio: 5 / 1;
width: 16vw;
border-radius: 1px 50px;
background-color: black;
border: none;
margin-left: 40px;
margin-right: 40px;
}
.buttons {
margin-top: 8%;
}
#box1 {
background-color: #EA9999;
}
#box2 {
background-color: #FACB9C;
}
#box3 {
background-color: #FFE59A;
}
#box4 {
background-color: #B6D7A8;
}
#box5 {
background-color: #A4C4CA;
}
.locked-icon,
.unlocked-icon {
height: 20px;
margin: 4px;
}
.saved-palettes {
width: 70%;
}
.saved-palettes > container {
display: flex;
flex-direction: row;
margin: 20px 0;
}
.saved-swatch {
width: 20%;
aspect-ratio: 1 / 1;
border: 4px solid black;
margin: 0 3px;
}
.hidden {
display: none;
}