-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
50 lines (49 loc) · 1.06 KB
/
schedule.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
<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Xtasy'17 - Bi-annual Cultural Fest | BVCOE</title>
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic" rel='stylesheet' type='text/css'>
<style>
body{
padding: 0;
marging: 0;
background: #000;
}
.container {
font-family: "Ubuntu";
font-weight: 300;
padding:200px 0;
margin:0 auto;
font-size: 50px;
text-align:center;
}
#logo a {
color: #4ebdd8;
text-decoration: none;
}
#logo strong {
color: #a3c735;
font-weight: 700;
}
#logo {
font-size: 100px;
}
@media all and (max-width: 500px){
.container{
font-size: 150%;
}
#logo{
font-size: 180%;
}
}
</style>
</head>
<body>
<div class="container">
<div id="logo" class="left"><a href="http://xtast17.com">XTASY<strong>'17</strong></a></div>
<p style="color: white;">Coming Soon</p>
</div>
</body>
</html>