-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 1.04 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
body{
font-family: 'Helvetica';
background-color: #fbea86;
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
flex-direction: column;
}
h1{
letter-spacing: 2px;
font-weight: 900;
color: white;
text-shadow: 2px 2px 4px #f4976c;
}
img{
width: 150px;
}
img:hover{
cursor: pointer;
}
button{
font-size: 18px;
padding: 20px 30px;
border-radius: 5px;
text-decoration: none;
color: #f4976c;
border:1px solid #f4976c;
background-color: transparent;
transition: color, background-color 0.3s ease-in;
}
button:hover{
color: #fbea86;
background-color: #f4976c;
cursor: pointer;
}
.container-1{
margin:20px auto;
width: 75%;
box-shadow: 5px 7px 10px rgba(250, 249, 246,0.3);
border-radius: 10px;
text-align: center;
padding: 20px;
background-color: #f4976c;
height: 70%;
}
#game{
min-height: 90%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
table{
width: 100%;
text-align: center;
border-top: 1px solid white;
color: white;button
}