forked from Nikhil-Bhat6/git-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (154 loc) · 5.49 KB
/
index.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>
<html>
<head>
<title>Workshop attendees</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-colors-ios.css">
</head>
<style type="text/css">
body {
background-color: lightgray;
overflow: hidden;
background-size: contain;
}
section {
background-color: lightgray;
width:110%;
}
section div {
margin-top: 10%;
}
div ul li {
padding: 15px 15px 15px 15px;
padding-left: 0;
width: 120%;
margin-left: -15%;
background-color: #e3e3e3;
margin-top: 4px;
font-size: 1em;
}
li
{
font-size: 0.8em;
}
h1 {
color: #ffffff;
margin-top: 10%;
}
@media only screen and (min-width:768px) {
div ul li {
margin-left:0%;
width: 100%;
background-color: #e3e3e3;
margin-top: 4px;
font-size: 1em;
}
}
</style>
<body>
<center><h1 style="font-size: 2em; color: black;font-weight: 1000">Git Workshop Attendees</h1></center>
<br>
<div class="w3-container" id="menu">
<div class="w3-content" style="max-width:700px">
<!-- -->
<div class="w3-row w3-center w3-card w3-padding">
<a href="javascript:void(0)" onclick="openMenu(event, 'Eat');" id="myLink">
<div class="w3-col s6 tablink">CSE</div>
</a>
<a href="javascript:void(0)" onclick="openMenu(event, 'Drinks');">
<div class="w3-col s6 tablink">ISE</div>
</a>
</div>
<div id="Eat" class="w3-container menu w3-padding-48 w3-card w3-padding-large w3-center">
<h5 class="w3-center w3-padding-48"><span class="" style="font-size: 1.5em;font-weight: 900">CSE</span></h5>
<ul style="list-style: none;">
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li style="font-size: 0.9em">[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</div>
<div id="Drinks" class="w3-container menu w3-padding-48 w3-card w3-padding-large w3-center">
<h5 class="w3-center w3-padding-48"><span class="" style="font-size: 1.5em;font-weight: 900">ISE</span></h5>
<ul style="list-style: none;">
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li style="font-size: 0.9em">[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<ul>
</div>
</div>
</div>
</section>
</body>
<script type="text/javascript">
// Tabbed Menu
function openMenu(evt, menuName) {
var i, x, tablinks;
x = document.getElementsByClassName("menu");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < x.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" w3-dark-grey", "");
}
document.getElementById(menuName).style.display = "block";
evt.currentTarget.firstElementChild.className += " w3-dark-grey";
}
document.getElementById("myLink").click();
</script>
</html>