-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
137 lines (118 loc) · 2.27 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.hidden {
display: none;
}
html {
height: 100%;
width: 100%;
font-family: 'Comic Neue', cursive;
}
body {
height: 100%;
width: 100%;
display: flex;
margin: 0 !important;
}
.palette {
display: flex;
flex-direction: column;
justify-content: space-evenly;
width: 80%;
padding-bottom : 40%;
padding-top: 20%;
}
h1 {
display: flex;
justify-content: center;
}
label {
font-size: 18pt;
}
.page-title {
font-size: 45pt;
}
.current-palette {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
padding: 2%;
}
.button, .confirm, .go-back {
font-family: 'Comic Neue', cursive;
align-self: center;
background: transparent;
padding: 1rem 1rem;
margin: 0 1rem;
transition: all .5s ease;
color:#000000;
font-size: 2rem;
letter-spacing: 1px;
outline: none;
box-shadow: 20px 38px 34px -26px hsla(0,0%,0%,.2);
border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
border: solid 6px black;
}
.confirm, .go-back {
font-size: small;
margin: 3%;
}
button:hover:not(.trash) {
transition: 1s ease-in-out;
background: rebeccapurple;
cursor: pointer;
color:white;
}
.button-section {
display: flex;
justify-content: space-evenly;
}
.boxes {
height: 150px;
width: 150px;
border: solid black 6px;
margin: 2%;
border-radius: 10px;
cursor: pointer;
box-shadow: 20px 38px 34px -26px hsla(0,0%,0%,.2);
border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
border:solid 6px black;
}
img{
max-height: 20px;
}
fieldset {
display: flex;
flex-direction: column;
align-items: center;
border: none;
}
.saved {
font-size: 20pt;
border-left: solid 5px;
height: 800px;
width: 20%;
}
.little-brick {
width: 30px;
height: 30px;
margin-bottom: 10px;
margin-top: 10px;
box-shadow: 20px 38px 34px -26px hsla(0,0%,0%,.2);
border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
border:solid 4px black;
}
.to-go-box {
padding: 0%;
}
.trash {
margin-top: 4%;
font-size: 30px;
height: 30px;
width: 30px;
border: none;
background: none;
}
.lil-box-container{
display: flex;
margin-left: 8%;
}