-
Notifications
You must be signed in to change notification settings - Fork 0
/
relevent_p1.html
148 lines (140 loc) · 2.88 KB
/
relevent_p1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Relevent 22 - Phase 1</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Satoshi", sans-serif;
}
body {
background-color: #d5433b;
}
.hero-section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.hero-img {
width: 50%;
margin: 50px;
}
.hero-title {
font-size: 4vw;
color: white;
text-align: center;
}
.main-content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
justify-content: space-around;
align-items: stretch;
margin: 100px;
}
.col {
background-color: white;
color: #d5433b;
border-radius: 5px;
padding: 20px;
font-size: 150%;
font-weight: 700;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
margin: 5px;
}
@media screen and (max-width: 768px) {
.hero-title {
font-size: 6vw;
}
.main-content {
grid-template-columns: 1fr 1fr;
}
}
</style>
</head>
<body>
<div class="hero-section">
<img class="hero-img"" src="images/relevent_logo.png"/>
<h1 class="hero-title">Relevent Phase 1 Qualifiers</h1>
</div>
<div class="main-content"></div>
</body>
<script>
const qualifiers = [
"A R Gokul",
"Abhilash George",
"Abhiram Krishna R S",
"Abhishek Raman R",
"Abhishek S",
"Adithya Krishnan",
"Akshya Sreekumar",
"Allen Fencer",
"Aparna S",
"Arunesh J B",
"Aswathy Mohan",
"Aswen A M",
"Aswin S S",
"Ben George Netto",
"B S Meenakshy",
"C Rachana",
"Chris Mathew",
"Cyril Chacko",
"D Sandra Santhosh",
"Devi Nandana S V",
"Diya S",
"Ephy Eapen V George",
"Faizan Ahamed Dawood",
"Gouripriya S A",
"Goutham Girish",
"Gowri Nandana T",
"Jibin Babu B S",
"Joel Thomas Thazhamon",
"Jovan Mathew Thomas",
"Kashyap Sanal",
"Kiran Sara Abey",
"Liya Susan Biju",
"Mable T Paul",
"Negha S",
"Prajwal P P",
"Preethi Manoj",
"Raef Abdul Nazir",
"Rahul V",
"Revand S",
"Rhea Merin Thomas",
"Rithika Pradeep",
"Riya Rajesh",
"Ryan Prajoth",
"Safna S",
"Sania M S",
"Sanna Pramod",
"Saravan A D",
"Shahin Sadath",
"Shibin Shibu",
"Siddarth S",
"Sijo Ajay",
"Sophy Maria Joy",
"Soumya Sinha",
"Sruthi N A",
"Swetha S",
"Vasundaraa G",
"Aswani PP",
"Rahul George Paul"
];
const mainContainer = document.querySelector(".main-content");
qualifiers.forEach((name) => {
const col = document.createElement("div");
col.classList.add("col");
col.innerHTML = name;
mainContainer.appendChild(col);
});
</script>
</html>