This repository was archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (76 loc) · 2.51 KB
/
index.html
File metadata and controls
86 lines (76 loc) · 2.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Mail your name, registration number and the code to sudo@wearemist.in and tell us why you want to be a part of MIST if you want to take advantage of that code -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SLcM | Manipal</title>
</head>
<body>
<style>
body {
overflow: hidden !important;
width: 100vw;
height: 100vh;
background-image: url("./image.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
}
/* First year MIT students: Use PREZ1B0UNCE code for priority ManComm recruitments */
/* Second year MIT students: Use D0UBLETECHHE4D5 code for priority Board recruitments */
.container {
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.banner {
display: flex;
flex-direction: row;
justify-content: center;
color: #ffffff;
padding: 15vh 1px;
text-align: center;
width: 100vw;
}
.text {
/* padding: 30px 10px; */
background-color: rgba(0, 0, 0, 0.4);
width: 60vw;
backdrop-filter: blur(20px);
border-radius: 10px;
}
.text>p {
font-size: 1.2rem;
}
a {
text-decoration: none;
color: rgb(243, 172, 20);
}
@media only screen and (max-width: 600px) {
.text {
width: 90vw;
}
}
</style>
<div class="container">
<div class="banner">
<div class="text">
<h1>It's April's Fool Day</h1>
<p>Well, we thought you were smarter than that. BTW, if you didn't know it yet, we cannot change
perfection. SLcM is perfect the way it is. Unbearably bearable.</p>
<p>If this was not enough for you, you can always go <a
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">here</a>. We are sure you
will love it.</p>
</div>
</div>
</div>
</body>
</html>