-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (114 loc) · 2.17 KB
/
styles.css
File metadata and controls
130 lines (114 loc) · 2.17 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
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
122
123
124
125
126
127
128
129
130
body {
display: flex;
flex-direction: row;
height: 100vh;
margin: 0;
font-family: 'Schoolbell', cursive;
background-image: url(https://i.gifer.com/6ob.gif);
background-repeat: repeat;
}
main {
display: flex;
flex-direction: column;
justify-content: space-around;
flex-basis: 75%;
}
main h1 {
text-align: center;
font-size: 13vmin;
margin-top: 3vmin;
margin-bottom: 0;
padding-bottom: 3vmin;
}
aside {
border-left: 2px solid black;
text-align: center;
display: flex;
flex-direction: column;
gap: 2vmin;
overflow: auto;
flex-basis: 25%;
margin-top: 2vmin;
margin-bottom: 2vmin;
}
h3 {
font-size: 2.5vmax;
margin-bottom: 0px;
}
.color-widget-parent {
display: flex;
justify-content: center;
gap: 1.5vmin;
margin-right: 2vw;
margin-left: 2vw;
margin-top: 0;
}
.color-box {
border: 2px solid black;
height: 18vmin;
width: 18vmin;
border-radius: 10px;
}
.color-box:hover {
scale: 1.05;
cursor: pointer;
box-shadow: 4px 4px black;
}
.color-box-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 0.75vmin;
}
img {
height: 2vmax;
width: 2vmax;
}
aside img:hover {
scale: 1.2;
cursor: pointer;
}
.color-buttons {
display: flex;
justify-content: space-evenly;
}
button {
font-size: 4vmin;
font-family: 'Schoolbell', cursive;
background-color: #26c6da;
box-shadow: 2px 2px black;
border-radius: 8px;
padding: 0.5vmin 2.5vmin;
margin-bottom: 3.5vmin;
}
button:hover {
box-shadow: 4px 4px black;
cursor: pointer;
scale: 1.2;
background-color: #2196f3;
}
.mini-color-box {
border: 1px solid black;
height: 3vmax;
width: 3vmax;
border-radius: 3px;
}
.single-saved-palette {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 0.75vmin;
margin-right: 0.5vw;
margin-left: 0.5vw;
}
@media screen and (max-width: 140vh) {
body {
flex-direction: column;
}
aside {
border-left: 0;
border-top: 2px solid black;
margin: 1vmin 3vmin;
}
}