-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (94 loc) · 1.66 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
html {
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
body{
position: relative;
overflow: hidden;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
font-family: 'Montserrat', sans-serif;
}
.landingpage {
height: 100vh;
text-align: center;
}
.nextpage{
transition: all .5s ease-out;
transform: translateY(-50vw);
}
.landingpage h1{
font-size: 4.8vw;
color: #fff;
}
.selectany{
width: 15vw;
height: 4vw;
background-color: wheat;
border-radius: 10px;
margin: auto;
}
.selectany h3{
padding: .7vw 0 0 0;
font-size: 1.6vw;
}
.images{
position: absolute;
top: 40%;
display: flex;
justify-content: center;
width: 100vw;
height: 15vw;
text-align: center;
z-index: 10000;
}
.selectimg{
height: 10vw;
width: 10vw;
margin: 2vw;
transition: all .4s ease-out;
cursor: pointer;
}
.computer-img{
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
.images img:hover{
transform: translateY(-1vw) scale(1.1);
}
.images-next-page{
transition: all .5s ease-out;
top: 1%;
}
.img-next-page{
height: 5vw;
width: 5vw;
}
.gamepage{
position: absolute;
top: 25%;
display: flex;
justify-content: space-evenly;
width: 100vw;
opacity: 0;
transition: all .4s ease-out;
}
.gamepage div{
font-size: 3vw;
text-align: center;
}
.gamepage img {
height: 20vw;
width: 20vw;
}
.show{
opacity: 1;
}
.score {
color: #fff;
}
.score h3, .score h2{
font-size: 4vw;
}