-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (54 loc) · 964 Bytes
/
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
body {
background-color: #A3D9FF;
}
#grid {
/* 400px by 300px */
width: 400px;
height: 300px;
display: flex;
flex-wrap: wrap;
margin: auto;
cursor: pointer;
}
h3 {
color: #161B33;
text-align: center;
font-size: 4rem;
}
.flip {
/* width: 20vh; */
transition: transform 0.5s;
transform-style: preserve-3d;
transform: rotateY(180deg);
}
#startScreen, #endScreen {
/* font-family: Arial, Helvetica, sans-serif; */
font-size: 4rem;
color: #161B33;
padding: 20px;
position: fixed;
display: block;
top: 50%;
left: 50%;
margin-top: -200px;
margin-left: -250px;
height: 400px;
width: 500px;
text-align: center;
}
#startScreen img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
button{
margin: 60px 40px;
height: 50px;
width: 200px;
}
button:hover {
background-color: #e4cde5;
}