-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.29 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
:root{
--color: #008b8b;
}
body{
font-family: 'Oswald', 'Helvetica';
background-color:rgb(238, 238, 238);
margin: 0;
}
#navbar{
text-align: center;
font-size: 48px;
background-color: var(--color);
padding: 10px 0;
color: white;
}
.container{
display: flex;
flex: 1 0 auto;
align-items: center;
}
#options{
display: flex;
flex-direction: column;
justify-content:space-between;
margin: 0 auto;
gap: 50px;
font-size: 24px;
text-align: center;
}
#colorPicker{
all: none;
margin:0;
border:none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
padding:0;
width: 275px;
height: 80px;
}
#sizeAndColor{
display:flex;
flex-direction: column;
justify-content: center;
}
button{
width: 275px;
height: 80px;
font-size: 24px;
font-family: 'Oswald';
background-color: rgb(238, 238, 238);
box-shadow: none;
border: black solid 1px;
}
button:hover{
background-color: var(--color);
}
#grid{
width: 700px;
height: 700px;
display: grid;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: 40px 0;
margin-right: auto;
}
.gridElement{
background-color: white;
display: inline-block;
}