-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
79 lines (73 loc) · 1.54 KB
/
index.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
body{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
background: url("images/background_2.png") no-repeat center center;
background-size: 100% 100%;
background-attachment: fixed;
background-position: center;
overflow: hidden;
}
::-webkit-scrollbar {
width: 0;
height: 0;
display: none;
}
#fruitlogo{
display: block;
width: 500px;
height: 200px;
padding-bottom: 100px;
}
.options{
display: flex;
flex-direction: column;
align-items: flex-start;
padding-left: 50px;
gap: 50px;
}
#singlePlayer{
display: block;
width: 200px;
height: 100;
background: none;
border: none;
img{
width: 200px;
height: 100;
border-radius: 30px;
opacity: 0.9;
}
&:hover{
width: 300;
height: 150;
img{
width: 300px;
height: 150;
opacity: 1;
}
}
}
#multiPlayer{
display: block;
background: none;
border: none;
width: 200px;
height: 100;
img{
width: 200px;
height: 100;
border-radius: 30px;
opacity: 0.9;
}
&:hover{
width: 300;
height: 150;
img{
width: 300px;
height: 150;
opacity: 1;
}
}
}