forked from zero-to-mastery/coding_challenge-44
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mattcsmith.html
82 lines (72 loc) · 1.63 KB
/
mattcsmith.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
<!DOCTYPE html>
<html>
<style>
body {
background:
url("https://myzoomwedding.com/wp-content/uploads/2020/04/photo-of-floral-arch-during-daytime-2788494-2-1020x600.jpg");
background-repeat: no-repeat;
background-size: cover;
margin: 0 !important;
}
section {
background-color: rgba(0, 0, 0, 0.527);
height: 100vh;
}
.title {
text-align: center;
padding: calc(50vh - 250px) 0;
color: #fff;
}
.title h1 {
font-size: 80px;
letter-spacing: 8px;
font-family: "Great Vibes", cursive;
margin: 0;
}
.title h2 {
font-family: "Open Sans", sans-serif;
font-size: 26px;
margin: 0 auto;
/* margin-top: 13px; */
/* padding: 5px 0; */
color: rgb(219, 217, 217);
width: fit-content;
letter-spacing: 5px;
padding-left: 5px;
text-align: center;
text-transform: uppercase;
}
.borders {
width: fit-content;
text-align: center;
margin: 15px auto;
border-top: 1px solid rgba(194, 191, 191, 0.411);
border-bottom: 1px solid rgba(194, 191, 191, 0.411);
}
.updates {
position: absolute;
bottom: 0px;
margin: 0;
width: 100%;
padding: 10px 0;
background-color: rgba(0, 0, 0, 0.89);
text-align: center;
font-family: "Open Sans Condensed", sans-serif;
color: #fff;
color: rgb(219, 217, 217);
letter-spacing: 3px;
}
</style>
<body>
<section>
<div></div>
<div class="title">
<h1>Fred & Wilma</h1>
<div class="borders">
<h2>Are getting married in 2025</h2>
</div>
</div>
<p class="updates">Check back soon for updates!</p>
</section>
</body>
</html>