-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
116 lines (101 loc) · 1.76 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
body {
font-family: "Comic Neue", cursive;
display: flex;
margin: 0px;
}
/* Main Display */
main {
width: 75vw;
display: flex;
flex-direction: column;
}
h1 {
letter-spacing: 0.05em;
text-align: center;
font-weight: 500;
font-size: 12vh;
margin-bottom: 0px;
}
.color-boxes {
display: flex;
align-items: center;
text-align: center;
height: 50%;
justify-content: center;
}
.swatch {
width: 22vh;
height: 22vh;
border: 4px solid #3d3d3d;
margin: auto;
border-radius: 4px;
margin: 0 12px;
cursor: pointer;
}
.color-boxes > div > p {
display: flex;
align-items: center;
justify-content: center;
}
.box-details {
display: inline-flex;
align-items: center;
}
.defBtn {
border: 4px solid #3d3d3d;
border-radius: 4px;
padding: 8px;
font-size: 20px;
min-width: 200px;
cursor: pointer;
position: relative;
background: white;
box-shadow: 4px 4px 5px 0px #2d2d2d;
-webkit-box-shadow: 4px 4px 5px 0px #2d2d2d;
-moz-box-shadow: 4px 4px 5px 0px #2d2d2d;
}
/* Side Panel */
aside {
border-left: 2px solid black;
height: 100vh;
width: 25vw;
overflow: scroll;
}
h2 {
text-align: center;
font-size: 30px;
margin-top: 64px;
}
button:hover {
transform: scale(0.99);
}
button:active {
transform: scale(0.95);
}
.buttons {
display: flex;
justify-content: space-evenly;
}
.material-symbols-outlined {
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
margin-left: 8px;
}
.palette {
display: flex;
justify-content: center;
align-items: center;
}
.palette > div {
width: 5vh;
height: 5vh;
border: 2px solid #3d3d3d;
margin: 25px 4px;
border-radius: 4px;
}
.palette > button {
width: min-content;
height: min-content;
border: none;
background: none;
cursor: pointer;
}