-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClue04.HTML
94 lines (86 loc) · 2.76 KB
/
Clue04.HTML
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Next Clue</title>
<style>
:root {
--gdg-blue: #4285f4;
--gdg-red: #ea4335;
--gdg-yellow: #fbbc04;
--gdg-green: #34a853;
--dark-bg: #2d2d2d;
--light-text: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--dark-bg);
color: var(--light-text);
line-height: 1.6;
font-size: larger;
}
.container {
max-width: 800px;
height: 800px;
margin: 2rem auto;
padding: 2rem;
/* background: rgba(255, 255, 255, 0.1); */
border-radius: 15px;
backdrop-filter: blur(10px);
/*background: linear-gradient(135deg, var(--gdg-blue), var(--gdg-green))*/
background: var(--dark-bg);
border: 5px solid #000; /* Adding dark black left border */
padding-top: 6rem;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: linear-gradient(135deg, var(--gdg-blue), var(--gdg-green));
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.clue {
font-size: 24px;
color:rgb(255, 225, 0);
margin-top: 20px;
text-align: center ;
}
.logo {
height: 50px;
}
.center-text {
text-align: center;
font-size: 24px;
color:#34a853;
}
.gradient-text { background: linear-gradient(35deg, rgba(255, 87, 34, 1), rgba(255, 138, 0, 1));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-align: center;
font-size: 100px;
/* Makes text transparent to show the gradient */ }
</style>
</head>
<body>
<header>
<img
src="https://www.cdnlogo.com/logos/g/65/gdg-google-developer-group.svg"
alt="GDG Logo"
class="logo"
/> </header>
<div class="container">
<h5 style = "text-align: center; font-size:30px;"> YOU DID IT! THE TREASURE IS ALL YOURS!</h5>
<p class="clue">FIND IT AT: </p>
<h1 class = "gradient-text">NAJD AUDITORIUM</h1>
<p class="center-text "><i>Find it hidden under the first desk of the first column!</i></p>
</div>
</body>
</html>