-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (69 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
61
62
63
64
65
66
67
68
69
70
71
72
body{
background-image: url('sky-and-clouds.jpg');
background-size: cover;
height: 100%;
}
.birdTitle {
color: gray;
}
.startGame{
position: absolute;
top: 50%;
left: 50%;
}
#start{
background-color: rgb(0,100,100);
font-weight: bold;
font-size: 15px;
border-radius: 15px;
width: 100px;
height: 50px;
}
#start:hover{
cursor: pointer;
color: skyblue;
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 20px;
}
h2 {
font-size: 15px;
}
body{
background-image: url('sky-and-clouds-rotated.jpg');
height: 50%;
}
.startGame{
position: absolute;
top: 50%;
left: 50%;
}
#start{
background-color: rgb(0,100,100);
color: white;
font-weight: bold;
font-size: 15px;
border-radius: 15px;
width: 100px;
height: 50px;
}
#start:hover{
cursor: pointer;
color: skyblue;
}
img {
height: 30px;
width: 30px;
}
.wrapper{
transform: rotate(90deg);
transform-origin:bottom left;
position:absolute;
top: -100vw;
left: 0;
height:100vw;
width:100vh;
overflow:auto;
}
}