-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (66 loc) · 1.23 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
*{
font-family:'Courier New', Courier, monospace;
}
body{
background-color: khaki;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: -10px;
}
#heading{
display: flex;
justify-content: center;
align-items: center;
}
#choice{
margin-top: -15px;
display: flex;
justify-content: center;
align-items: center;
}
.sliderprompt{
padding: 5px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
#black,#rgb,#reset{
width:80px;
margin: 5px;
background-color: blanchedalmond;
box-shadow: 3px 3px 8px black;
}
.color-prompt{
margin:7.5px;
display: flex;
flex-direction: column;
align-items: center;
}
#color{
margin-top: 30px;
margin-bottom: -20px;
height:20px;
}
#txt{
margin-top: 25px;
color: crimson;
font-size: 10px;
}
.grid{
margin-top: 10px;
display: inline-grid;
grid-template-columns: repeat(16, 2fr);
grid-template-rows: repeat(16, 2fr);
border: 5px solid white;
border-radius: 5px;
height: 425px;
width: 425px;
background-color: gray;
box-shadow: 10px 10px;
}
.cell{
background-color: white;
border: 1px solid black;
}