-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparadigmshift.html
102 lines (98 loc) · 1.92 KB
/
paradigmshift.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
---
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<style>
html,body{
height:100%;
overflow:hidden;
background:blue;
}
section{
height:100%;
padding:1%;
margin: 0;
background: red;
}
.sectioncontent{
height:100%;
overflow: auto;
}
#home {
background-color:#efefef;
text-align:center;
}
#logo{
width: 100px;
}
#headerbanner img{
margin-top:-60px;
height:190px;
}
@media all and (max-width: 520px){
#headerbanner img{
width:100%;
height:auto;
margin-top:-30px;
}
}
.clock {
text-align:center;
margin:0 auto;
}
.clock_days, .clock_hours, .clock_minutes, .clock_seconds {
display: inline-block;
}
.val {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:20px;
font-weight:bold;
color:#555;
text-align:center;
line-height:20px;
margin-top:-10px;
}
.type_days, .type_hours, .type_minutes, .type_seconds {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
text-align:center;
font-size:15px;
margin-top:-5px;
font-weight:bold;
text-transform:uppercase;
}
.type_days{
color:#ff6565;
}
.type_hours {
color:#378cff;
}
.type_minutes {
color:#9cdb7d;
}
.type_seconds {
color:#ffdc50;
}
</style>
</head>
<body>
<section id="home">
<div class="sectioncontent">
<img id="logo" src='{{ site.baseurl }}/images/logo.png' />
<header id="headerbanner"> <h1>
<img src="{{ site.baseurl }}/images/backdrop.png" alt="saMMsCRIthi '14"/>
</h1> </header>
{% include countdown %}
<a href=#events>Events</a>
</div>
</section>
<section id="events">
<div class="sectioncontent">Events</<div >
<a href="#home">Go back home</a>
</div>
</section>
</body>
</html>