-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (80 loc) · 1.34 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Pranshu font;
src: url(./fonts/PixeloidSans-mLxMm.ttf);
}
body{
background-color: black;
font-family: Pranshu font;
/* cursor: url("http://www.rw-designer.com/cursor-view/19304.png"),auto; */
}
.container{
height: 100vh;
width: 100vw;
background-image: url(./assets/background1.png);
background-size: 100% 100%;
}
#parent-instruction{
height: 88px;
width: 380px;
position: absolute;
top: 22%;
left: 37%;
display: flex;
justify-content: center;
align-items: center;
}
.instruction{
color: white;
font-size: 32px;
letter-spacing: 8px;
padding-left: 10px;
}
#parent-adventure{
position: absolute;
bottom: 29%;
left: 31%;
height: 50px;
width: 550px;
display: flex;
justify-content: center;
align-items: center;
}
.adventure{
color: white;
letter-spacing: 13px;
font-size: 20px;
padding-left: 10px;
}
#parent-play{
position: absolute;
height: 88px;
width: 450px;
bottom: 9%;
left: 35%;
display: flex;
justify-content: center;
align-items: center;
}
.play{
color:#FFD81F;
font-size: 40px;
letter-spacing: 8px;
padding-left: 10px;
}
.play:hover{
transform: scale(1.1);
}
#parent-play:hover{
cursor: pointer;
}
#parent-instruction{
cursor: pointer;
}
.instruction:hover{
transform: scale(1.1);
}