-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.html
More file actions
168 lines (152 loc) · 4.96 KB
/
Copy pathinstructions.html
File metadata and controls
168 lines (152 loc) · 4.96 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instructions</title>
<link href='https://fonts.googleapis.com/css?family=Italiana' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Abhaya Libre', serif;
background: linear-gradient(180deg, #39289F 0%, #422F9C 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
overflow-x: hidden;
overflow-y: hidden;
}
.instructions-box {
background: linear-gradient(180deg, #DAB999, #746351);
padding: 30px;
border-radius: 20px;
max-width: 500px;
text-align: center;
color: white;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
margin-bottom: 50px;
}
.instructions-box h1 {
font-family: 'Italiana', serif;
font-size: 2rem;
margin-bottom: 15px;
}
.instructions-box p {
font-size: 1.1rem;
line-height: 1.6;
color: black;
}
.start-btn {
background: black;
color: white;
font-size: 1rem;
padding: 10px 20px;
border: none;
border-radius: 20px;
margin-top: 20px;
cursor: pointer;
}
.top-profiles {
text-align: center;
margin-top: 20px;
}
.top-profiles h2 {
font-size: 1.5rem;
color: white;
margin-bottom: 15px;
}
.profile-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.profile {
text-align: center;
}
.profile img {
width: 150px;
height: 150px;
border-radius: 15px;
}
.profile-name {
margin-top: 10px;
color: white;
font-weight: bold;
}
.see-all-btn {
background: rgba(255, 255, 255, 0.2);
color: white;
padding: 5px 15px;
border-radius: 10px;
margin-top: 10px;
font-size: 0.9rem;
cursor: pointer;
}
@media (max-width: 768px) {
.instructions-box {
padding: 20px;
font-size: 1rem;
}
.profile img {
width: 100px;
height: 100px;
}
}
.corner-image {
position: absolute;
top: 20px;
left: -20px;
width: 400px;
height: 100%;
}
.corner-image1{
position: absolute;
top: -250px;
right: -200px;
width: 400px; /* Adjust size as needed */
height: 100%;
transform: scaleY(-1);
rotate: 15deg;
}
</style>
</head>
<body>
<div class="instructions-box">
<h1>INSTRUCTIONS 📖</h1>
<p>What is fun without speed? Compete with computer prodigies to become one!! You will compete against a random stranger for shorter codes and faster execution. An output will be shown to you and you will have to code for it in the least number of lines and lesser time. Do not forget that you have gambled your qubits for it. Losing the challenge makes your opponent win what’s yours.</p>
<a href="C:\Users\agarw\OneDrive\Desktop\New folder\versus.html"><button class="start-btn">START</button></a>
</div>
<div class="top-profiles">
<h2>Top Profiles</h2>
<div class="profile-container">
<div class="profile">
<img src="C:\Users\agarw\OneDrive\Desktop\New folder\image 1.png" alt="phoenix">
<div class="profile-name">🔥 phoenix</div>
</div>
<div class="profile">
<img src="C:\Users\agarw\OneDrive\Desktop\New folder\Rectangle 24.png" alt="Yamanu">
<div class="profile-name">🔥 Yamanu</div>
</div>
<div class="profile">
<img src="C:\Users\agarw\OneDrive\Desktop\New folder\Rectangle 25.png" alt="rolfes">
<div class="profile-name">🔥 rolfes</div>
</div>
<div class="profile">
<img src="C:\Users\agarw\OneDrive\Desktop\New folder\Rectangle 26.png" alt="Rejett">
<div class="profile-name">🔥 Rejett</div>
</div>
</div>
</div>
<img class="corner-image" src="C:\Users\agarw\OneDrive\Desktop\New folder\telescope.png" alt="Corner Image">
<img class="corner-image1" src="qubit-icon.png" alt="Corner Image">
</body>
</html>