-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (114 loc) · 2.15 KB
/
style.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
*,
*::before,
*::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html{
font-size: 20px;
}
body{
margin: auto;
font-family: 'Poppins', sans-serif;
background-color: rgb(184, 140, 83);
}
header{
color: rgb(247, 238, 228);
font-size: 2rem;
text-align: center;
text-shadow: 10px 10px 0px #543b16c7,
20px 20px 0px #543b1681,
30px 30px 0px #543b1625;
}
p{
color: rgb(247, 238, 228);
font-size: 1.2rem;
text-align: center;
margin: auto;
margin-top: 9px;
}
.main-container{
display: flex;
width: fit-content;
height: fit-content;
margin: auto;
margin-top: 1rem;
padding: 1rem;
border-radius: 5px;
/* border: 2px solid red; */
background-color: rgb(245, 224, 196);
box-shadow: rgb(95, 65, 25) 3px 3px 6px 0px inset, rgb(184, 140, 83, 0.5) -3px -3px 6px 1px inset;
gap: 50px;
}
.settings-container{
display: flex;
width: 250px;
height: fit-content;
margin: auto;
padding: 1rem;
flex-direction: column;
align-items: center;
gap: 2em;
/* border: 2px solid green; */
}
.grid{
display: grid;
margin: auto;
width: 500px;
height: 500px;
border-radius: 3px;
box-shadow: rgba(148, 84, 0, 0.3) 0px 3px 8px;
/* background-color: red; */
}
.grid-unit{
background-color: white;
}
.color,.size{
display: flex;
justify-content: space-between;
gap: 10px;
align-items: center;
}
input[type=color]{
height: 50px;
width: 50px;
opacity: 0;
}
.color-wrapper{
width: fit-content;
height: fit-content;
border-radius: 3px;
}
label{
font-size: 0.9rem;
text-align: left;
color:rgb(148, 84, 0);
}
select{
border: 0;
width: 80px;
height: 30px;
font-size: 1rem;
text-align: center;
background-color: antiquewhite;
color: rgb(148, 84, 0);
}
select:focus{
border: none;
outline: none;
}
button{
border: none;
height: 30px;
width: 180px;
align-items: center;
background-color: rgb(148, 84, 0);
font-size: large;
color:antiquewhite;
border-radius: 3px;
}
button:hover{
background-color:antiquewhite ;
color: rgb(148, 84, 0);
}