-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (54 loc) · 964 Bytes
/
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
body {
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #ffffff;
}
.logo-container {
text-align: center;
margin-bottom: 20px;
}
.logo-container img {
max-width: 60%;
height: auto;
}
#board {
background-color: black;
}
.images-container {
display: flex;
justify-content: center;
align-items: center;
width: calc(100% - 250px);
}
.left-image,
.right-image {
flex: 1;
text-align: center;
}
.left-image img,
.right-image img {
max-width: 100%;
height: auto;
}
.game-container {
flex: 5;
text-align: center;
}
.github-link {
position: absolute;
bottom: 10px;
right: 10px;
background-color: #333;
color: #fff;
padding: 10px 15px;
text-decoration: none;
border-radius: 5px;
font-family: Arial, sans-serif;
}
.github-link:hover {
background-color: #555;
}