-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
115 lines (99 loc) · 2.98 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeHS Blackout</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:[email protected]&display=swap');
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: 'Funnel Display', sans-serif;
background-color: rgb(0, 0, 0);
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
width: 85vh;
height: 100vh;
text-align: center;
}
/* Main container styling */
.container {
background-color: black;
border-radius: 15px;
padding: 0px;
max-width: 500px;
width: 100%;
}
/* Inner content styling with rounded corners */
.inner-content {
background-color: #1c1c1c;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 40px;
}
/* Title styling */
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #00bcd4;
}
/* Paragraph text styling */
p {
font-size: 1.1rem;
margin-bottom: 30px;
color: #cccccc;
}
/* Button styling */
#myButton {
background-color: #00bcd4;
color: white;
font-size: 1.2rem;
padding: 15px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#myButton:hover {
background-color: #008c9e;
}
/* Responsive design for smaller screens */
@media (max-width: 500px) {
.container {
padding: 20px;
}
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
#myButton {
font-size: 1rem;
padding: 12px 24px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="inner-content">
<h1>CodeHS Blackout</h1>
<p>This is a WIP. Please let me know on my GitHub if there are any things I can change or if you have any tips.</p>
<p>Current Version: <span id="version"></span></p>
<a href="https://github.com/eyesick2k7/CodeHS-Blackout" target="_blank">
<button id="myButton">GitHub Link</button>
</a>
</div>
</div>
<script src="index.js"></script>
</body>
</html>