-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (57 loc) · 817 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
64
65
66
67
68
69
70
h1{
font-family:'Arimo';
font-weight:bold;
padding:20px;
z-index:-1;
}
#single-player, #multi-player {
opacity:0.7;
font-weight:bold;
color:white;
font-family:'Arimo';
height: 54;
width: 139;
}
#single-player {
background-color:#03a9f4;
}
#multi-player {
background-color:#00bcd4;
}
#single-player:hover,#multi-player:hover {
background-color:#32CD32;
}
@media only screen and (min-width: 500px){
h1{
position:absolute;
top:10%;
left:35%;
}
#single-player{
position:relative;
top:18%;
left:40%;
}
#multi-player{
position:relative;
top:18%;
left:41%;
}
}
@media only screen and (max-width: 499px){
h1{
position:absolute;
top:10%;
left:15%;
}
#single-player{
position:relative;
top:35%;
left:30%;
}
#multi-player{
position:absolute;
top:46%;
left:30%;
}
}