forked from SouravVerma-art/Simon-Says-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 753 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (38 loc) · 753 Bytes
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
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background-color: white;
font-family: Arial, sans-serif;
color: black;
}
.cntr{
display: flex;
flex-direction: column;
align-items: center;
}
h1{
color: rgb(30, 210, 150);
}
.btn-cntnr{
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
height: 300px;
width: 300px;
margin-top: 20px;
}
.box{
border-radius: 20px;
border: solid black 5px;
cursor: pointer;
}
#yellow{ background-color: yellow; }
#red{ background-color: red; }
#purple{ background-color: purple; }
#green{ background-color: green; }
.flash{
background-color: white !important;
}