-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (109 loc) · 2.59 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
<html>
<head>
<title>Novastrike Media</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Cinzel:400,700" rel="stylesheet"> </head>
<style>
body {
background: #040412;
color: #aaa;
font-family: Cinzel;
}
h1{
}
.rodaforro {
height: 25%;
}
.encosto {
width: 5%
}
.logofit {
width: 30%
}
table {
width: 100%;
height: 100%;
}
.logo {
top: -80px;
position: relative;
}
.sup {
height: .1em;
text-align: right;
padding-right: 5%;
font-size: 30;
line-height: .1em
}
.mid {
height: 21%;
text-align: right;
padding-right: 5%;
font-size: 12
}
.sub {
text-align: right;
padding-right: 5%;
font-size: 30
}
td {
vertical-align: top;
}
.social {
position: fixed;
right: 0;
bottom: 0;
padding: 20px;
//background-color: white;
}
.social img {
width: 64px;
}
@media screen and (max-width:800px){
.sup {
font-size: 15px;
}
.sub {
font-size: 20px;
}
.logo {
top: 50px;
position: absolute;
width: 20%;
}
.social img {
width: 128px;
}
}
</style>
<body>
<table>
<tr class="rodaforro">
<th class="encosto" rowspan="5"></th>
<th colspan="2"></th>
<th rowspan="5"></th>
</tr>
<tr>
<td class="logofit" rowspan="3"> <img class="logo" src="logo.svg" alt="Novastrike Logo"> </td>
<td class="sup">
<h1 style="line-height: 86px;">COMING SOON</h1></td>
</tr>
<tr>
<td class="mid">
<h3>Yet Again</h3></td>
</tr>
<tr>
<td class="sub">[email protected]</td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
<div class="social">
<a target="_blank" href="https://www.facebook.com/novastrikemedia/"><img src="icons/facebook.png" alt=""></a>
<a target="_blank" href="https://twitter.com/NovastrikeMEDIA"><img src="icons/twitter.png" alt=""></a>
<a target="_blank" href="https://medium.com/@novastrike"><img src="icons/medium.png" alt=""></a>
<a target="_blank" href="https://www.youtube.com/channel/UCd7QSilyhIZhySTW3dmACKw"><img src="icons/youtube.png" alt=""></a>
</div>
</body>
</html>