-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeweatherteam.html
177 lines (174 loc) · 6.7 KB
/
theweatherteam.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
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
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9P4PKS3E7L"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9P4PKS3E7L');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="https://i.ibb.co/pxrchSs/twt.png">
<title>The Weather Team</title>
<script>
function openInvite(){
window.open("https://discord.com/invite/CTyybFMQrM","_blank");
}
function toggletheme(){
var themebtn = document.getElementById("theme");
var header = document.getElementById("header");
if (themebtn.src.includes("lighttheme.png")){
themebtn.src = "assets/darktheme.png"
document.body.style.background = "rgb(30, 30, 30)";
document.body.style.color = "white";
header.style.background = "rgba(30, 30, 30, 0.7)"
} else {
themebtn.src = "assets/lighttheme.png"
document.body.style.background = "white";
document.body.style.color = "black";
header.style.background = "rgba(255, 255, 255, 0.8)"
}
}
</script>
<style>
body{
font-family: "Poppins", Bahnschrift, Verdana, sans-serif;
font-weight: 400;
font-style: normal;
margin: 0px;
}
button{
background-color: rgb(255, 75, 75);
color: white;
padding: 10px;
border-radius: 5px;
font-size: large;
border: none;
transition-duration: 0.25s;
cursor: pointer;
}
button:hover{
background-color: rgb(255, 0, 0);
color: rgb(255, 255, 255);
cursor: pointer;
}
.link{
color: blue;
text-decoration: none;
transition-duration: 0.25s;
}
.link:hover{
color: red
}
.infodiv {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(0deg, rgba(91, 219, 255, 0.4), rgba(0, 97, 124, 0.4));
border-radius: 20px;
width: calc(100% - 30px);
margin-left: 15px;
}
.infodivchild {
flex: 1;
padding-left: 7%;
padding-right: 3%;
}
.infoimg {
display: block;
width: auto;
height: auto;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 10px;
}
.footer {
border-radius: 10px 10px 0px 0px;
position: absolute;
display: flex;
justify-content: center;
align-items: flex-start;
background: black;
color: white;
width: calc(100% - 60px);
height: fit-content;
flex-direction: column;
padding-left: 30px;
padding-right: 30px;
}
</style>
</head>
<body>
<div id="header" style="background: rgba(255, 255, 255, 0.8); padding: 10px; width: 100%; display: flex; justify-content: center; align-items: center; position: fixed;">
<br>
<a href="https://busybird15.github.io/theweatherteam"><img src="https://i.ibb.co/pxrchSs/twt.png" width="50px" height="50px" style="border-radius: 10px;"></a>
<a class="link" href="https://busybird15.github.io/radar" style="margin-left: 40%; margin-right: 40px;">Weather Radar</a>
<img style="cursor: pointer;" id="theme" onclick="toggletheme()" width="35px" height="35px" src="assets/lighttheme.png">
<br>
</div>
<br><br><br><br>
<div style="border-top: 30%; background-image: url(https://i.ibb.co/mJ5wj10/image.png); display: flex; justify-content: center; align-items: center;">
<h2 style="color: black; text-shadow: 0px 0px 25px white;">A community of weather enthusiasts.</h2>
</div>
<br><br><br>
<div class="infodiv">
<div class="infodivchild">
<h2>A small yet growing Discord server of all things weather.</h2>
<button onclick="openInvite();">Join today!</button>
</div>
<div class="infodivchild">
<img class="infoimg" style="max-width: 550px; max-height: 450px;" src="assets/discord.png">
</div>
</div>
<br><br><br>
<div class="infodiv">
<div class="infodivchild">
<img class="infoimg" style="max-width: 550px; max-height: 450px;" src="assets/radar.png">
</div>
<div class="infodivchild">
<h2>Our <a class="link" href="https://busybird15.github.io/radar">custom radar</a> provides alerts, live radar, and satellite. </h2>
</div>
</div>
<br><br><br>
<div class="infodiv">
<div class="infodivchild">
<h2>See every PDS warning as it is issued...</h2>
</div>
<div class="infodivchild">
<img class="infoimg" style="max-width: 550px; max-height: 450px;" src="assets/pds_alerts.png">
</div>
</div>
<br><br><br>
<div class="infodiv">
<div class="infodivchild">
<img class="infoimg" style="max-width: 550px; max-height: 450px;" src="assets/storm_reps.png">
</div>
<div class="infodivchild">
<h2>...Along with every TOR/SVR warning and preliminary storm report.</h2>
</div>
</div>
<br><br><br>
<div class="infodiv">
<div class="infodivchild">
<h2>Learn about different radar products.</h2>
</div>
<div class="infodivchild">
<img class="infoimg" style="max-width: 550px; max-height: 450px;" src="assets/faq.png">
</div>
</div>
<br><br><br>
<div width="100%" style="display: flex; justify-content: center; align-items: center;">
<button onclick="openInvite();">Join The Weather Team</button>
</div>
<br><br><br>
<div class="footer">
<br>
<p style="width: max-content;">© 2024 | The Weather Team<br><br>
Made by BusyBird15 with ideas from DaGreenBoi.<br><br>
<a class="link" href="https://fonts.google.com/specimen/Poppins">Website font</a> from Google Fonts.</p>
<br>
</div>
</body>