-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
63 lines (57 loc) · 1.09 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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: slategrey;
gap: 50px;
}
#sidebar {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 210px;
height: 180px;
margin-left: -10%;
background-color: lightgrey;
border-radius: 5px;
padding: 0 10px;
gap: 20px;
border: 2px solid black;
}
#new-grid {
padding: 3px 8px;
scale: 110%;
background-color: rgb(60, 156, 246);
border-radius: 5px;
border: none;
color: white;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
#color-selection {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
background-color: white;
border-radius: 5px;
padding: 0 15px;
border: 2px solid grey;
}
.color-title{
font-weight: bold;
}
#container {
border: 2px solid black;
width: 500px;
height: 500px;
display: flex;
flex-wrap: wrap;
}