-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·88 lines (77 loc) · 1.31 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
:root {
--background-color: #303030;
--div-color: #28afb0;
--button-color: #ee964b;
}
body {
background-color: var(--background-color);
}
button {
background-color: var(--button-color);
border: none;
height: fit-content;
padding: 0.5em;
margin: 0.25rem;
width: fit-content;
border-radius: 0.25rem;
}
div {
background-color: var(--div-color);
height: 20px;
width: 20px;
}
.score {
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: fit-content;
width: fit-content;
padding: 0;
justify-content: start;
background-color: antiquewhite;
}
.display {
margin: 0;
}
.game {
background-color: antiquewhite;
border-radius: 2em;
padding: 2em;
display: grid;
grid-template-columns: repeat(2, 1fr);
width: auto;
justify-content: space-between;
height: fit-content;
width: fit-content;
margin: 0 auto;
margin-top: 10vh;
}
.grid {
background-color: blue;
width: 200px;
height: 400px;
border: 3px solid black;
display: flex;
flex-wrap: wrap;
}
.previous-grid {
height: 100px;
width: 100px;
display: flex;
flex-wrap: wrap;
}
.previous-shape {
margin: 3rem 0rem;
height: 100px;
width: 100px;
border: 3px solid black;
}
.block {
background-color: blueviolet;
}
.block2 {
background-color: pink;
}
.block3 {
background-color: black;
}