-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
65 lines (55 loc) · 1.46 KB
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradient Background</title>
<style>
@font-face {
font-family: fette;
src: url('https://matthewthomasportfolio.vercel.app/fette.TTF');
}
:root {
--atem: #e64b3d;
--ptz: #ffa833;
--text-color: #ffffff;
}
.event {
font-family: fette;
width: 90%;
height: 275px;
padding: 20px;
border-radius: 15px; /* Adjust border radius as needed */
}
.wcc {
background: linear-gradient(135deg, var(--atem), var(--ptz));
color: var(--text-color);
}
.event h1 {
font-size: 24px;
font-family: fette;
margin-bottom: 10px;
text-align: left;
display: inline-block;
}
.event hr {
margin: 10px 0;
border: 0;
border-top: 1px solid var(--text-color);
width: calc(25% - 8px); /* Adjust as needed */
}
.event p {
font-size: 18px;
text-align: left;
}
</style>
</head>
<body>
<div class="event wcc">
<h1>Windsor Christian Church</h1>
<hr>
<p>VIDEO SWITCHING | VIDEO PTZ</p>
<p>3/24/2024 @ 3:00pm</p>
</div>
</body>
</html>