This repository was archived by the owner on Apr 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (146 loc) · 4.16 KB
/
index.html
File metadata and controls
159 lines (146 loc) · 4.16 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#6c28ff">
<meta name="theme-color" content="#363636">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,600" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<style>
html {
height: 100%;
}
body {
background-color: #424242;
font-family: 'Lato', sans-serif;
margin: 0;
color: #fff;
font-size: 1.2rem;
line-height: 1.5;
font-weight: 300;
height: 100%;
min-height: 100%;
min-width: 360px;
}
h1, h2 {
font-weight: 300;
}
a {
color: #3d5afe;
font-weight: 400;
text-decoration: none;
text-shadow: black 0px 0px 20px;
}
a:hover {
color: #304FFE; /* indigoA700 */
}
.clearfix:after {
content: "";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
.page-container {
padding-top: 65px;
margin: 0 auto;
}
.top-nav {
position: fixed;
height: 56px;
width: 100%;
background-color: #212121;
z-index: 100;
margin: 0;
padding: 0;
}
.top-nav .page-container {
padding-top: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: left;
-ms-flex-pack: left;
justify-content: left;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.top-nav .page-container .site-title {
margin: 0;
}
.top-nav .page-container .site-title, .top-nav .page-container .top-link {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.top-nav .page-container .nav-links-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
margin-left: 1.0rem;
}
.top-nav .page-container .nav-links-container .top-link {
color: #e6e6e6;
font-weight: 400;
max-width: 140px;
text-decoration: none;
color: #e6e6e6;
padding: 0 0.5rem;
}
@media (max-width: 900px){
.page-container {
width: 80%;
}
}
@media (max-width: 500px){
.page-container {
width: 96%;
min-width: 300px;
}
}
@media (min-width: 1000px) {
.page-container {
width: 80%;
max-width: 1200px;
}
}
</style>
<title>Heroic Dev</title>
</head>
<body>
<div id="base">
<div id="app">
<div class="top-nav"><div class="page-container">
<span class="logo light"></span>
<h1 class="site-title">Heroic Dev</h1>
<div class="nav-links-container"></div>
</div>
<div class="page"></div>
</div>
</div>
</div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` in this folder.
To create a production bundle, use `npm run build`.
-->
</body>
</html>