-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices-Q2.html
More file actions
134 lines (112 loc) · 3.26 KB
/
Copy pathservices-Q2.html
File metadata and controls
134 lines (112 loc) · 3.26 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HYPURE | Services</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.services-page-Q2 {
width: 100%;
height: 100vh;
background: url("./images/cyberpunk-services-\ Q2.jpg") no-repeat fixed;
background-size: 100% 100%;
z-index: -1;
}
.goBack {
width: 10rem;
height: 3.5rem;
background: url("./images/Button\ -\ Go\ Back.png") no-repeat;
background-size: 100% 100%;
z-index: 99;
position: absolute;
bottom: 3.7%;
left: 0.9%;
}
.goBack:hover {
transition: all .3s ease-in-out;
transform: scale(1.1);
box-shadow: 0 0 5px #cc00ff, 0 0 20px #fb00ff,
0 0 35px rgba(255, 0, 247, 0.7), 0 0 50px rgba(200, 0, 255, 0.6);
border-color: #fff;
}
.skip {
width: 10rem;
height: 3.5rem;
background: url("./images/Button\ -\ Skip.png") no-repeat;
background-size: 100% 100%;
z-index: 99;
position: absolute;
bottom: 3.6%;
right: 33%;
}
.skip:hover {
transition: all .3s ease-in-out;
transform: scale(1.1);
box-shadow: 0 0 5px #cc00ff, 0 0 20px #fb00ff,
0 0 35px rgba(255, 0, 247, 0.7), 0 0 50px rgba(200, 0, 255, 0.6);
border-color: #fff;
}
.invisibleDiv-1 {
opacity: 0;
border: 3px solid red;
width: 61.5rem;
height: 6.5rem;
position: absolute;
bottom: 24%;
left: 9%;
}
.invisibleDiv-2 {
opacity: 0;
border: 3px solid red;
width: 61.5rem;
height: 6.5rem;
position: absolute;
bottom: 11%;
left: 9%;
}
.logo {
width: 250px;
height: 70px;
background: url("./images/logo.png") no-repeat;
background-size: 100% 100%;
z-index: 99;
position: absolute;
top: 5%;
right: 5%;
}
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.4);
/* box-shadow: 0 0 5px #ffff00, 0 0 20px rgb(255 255 0 / 0.8),
0 0 35px rgb(255 255 0 / 0.7), 0 0 50px rgb(255 255 0 / 0.6);
border-color: #fff; */
}
</style>
</head>
<body>
<div class="services-page-Q2"></div>
<a href="./index.html">
<div class="logo grow"></div>
</a>
<a href="./services-Q1.html">
<div class="goBack"></div>
</a>
<a href="./services-Q3.html">
<div class="skip"></div>
</a>
<a href="./services-Q3.html">
<div class="invisibleDiv-1"></div>
</a>
<a href="./services-Q3.html">
<div class="invisibleDiv-2"></div>
</a>
</body>
</html>