Move prior work to vcs

This commit is contained in:
Ethan Paul 2018-10-18 21:10:32 -04:00
parent 80e14a1dd1
commit 288a43574c
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
3 changed files with 167 additions and 0 deletions

6
css/fontawesome.min.css vendored Normal file

File diff suppressed because one or more lines are too long

116
css/style.css Executable file
View File

@ -0,0 +1,116 @@
html {
color: white;
font-family: Verdana;
}
body {
background-color: black;
}
#container {
width: 50%;
margin-left: 25%;
margin-top: 10%;
}
#links {
color: white;
text-align: center;
padding-top: 4rem;
padding-bottom: 1rem;
}
.link {
width: 50%;
padding: .25rem;
margin-top: 2rem;
margin-bottom: 2rem;
margin-left: auto;
margin-right: auto;
transition: 0.2s;
}
.link a {
color: white;
text-decoration: none;
font-family: Verdana;
}
.link:hover {
border-left-color: grey;
border-left-style: solid;
border-left-width: 2px;
border-right-color: grey;
border-right-style: solid;
border-right-width: 2px;
}
#logo {
width: 80px;
position: relative;
top: 150px;
left: 50%;
margin-left: -40px;
}
.rotate {
-webkit-animation:spin 7s linear infinite;
-moz-animation:spin 7s linear infinite;
animation:spin 7s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.arc-outside {
margin: auto;
position: relative;
width:210px;
height:210px;
border-radius: 50%;
border-top:5px solid black;
border-right:5px solid white;
border-left:5px solid black;
border-bottom:5px solid black;
}
.arc-1 {
position: relative;
top: 50%;
left: 50%;
margin: -95px 0 0 -95px;
width:180px;
height:180px;
border-radius:50%;
border-top:5px solid black;
border-right:5px solid black;
border-left:5px solid black;
border-bottom:5px solid white;
}
.arc-2 {
position: relative;
top: 50%;
left: 50%;
margin: -80px 0 0 -80px;
width:150px;
height:150px;
border-radius:50%;
border-top:5px solid black;
border-right:5px solid black;
border-left:5px solid white;
border-bottom:5px solid black;
}
.arc-3 {
position: relative;
top: 50%;
left: 50%;
margin: -65px 0 0 -65px;
width:120px;
height:120px;
border-radius:50%;
border-top:5px solid white;
border-right:5px solid black;
border-left:5px solid black;
border-bottom:5px solid black;
}
footer {
color: grey;
padding-bottom: 1rem;
font-size: .8rem;
padding-left: 50%;
margin-left: -5rem;
width: 10rem;
position: fixed;
bottom: 0;
text-align: center;
}

45
index.html Normal file
View File

@ -0,0 +1,45 @@
<html>
<head>
<!-- Web crawler and search indexing meta -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="author" content="enpaul@enpaul.net"/>
<meta name="description" content="My personal landing page"/>
<meta name="keywords" content="enpaul, network, operations, networking, plex, media, server, adds, active, directory, wpi, worcester, polytechnic, institute, boston, mechanical, engineering, solidworks, home, lab, homelab, solid, works, autocad, cad, domain, windows, server, omnipod, open, omni, diy, pancreas, t1d, type, one, diabetes, diabetic"/>
<title>OMNI</title>
<link rel="shortcut icon" href="https://cdn.enp.one/img/logos/e-b-sm.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.enp.one/img/logos/e-b-sm.png">
<link rel="icon" type="image/png" href="https://cdn.enp.one/img/logos/e-b-sm.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://cdn.enp.one/img/logos/e-b-sm.png" sizes="16x16">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<img id="logo" src="https://cdn.enp.one/img/logos/e-w-sm.png"/>
<div class="arc-outside rotate">
<div class="arc-1 rotate">
<div class="arc-2 rotate">
<div class="arc-3 rotate">
</div>
</div>
</div>
</div>
<div id="links">
<div class="link">
<a href="https://enpaul.net/">home</a>
</div>
<div class="link">
<a href="https://enpaul.net/homelab/">about</a>
</div>
</div>
</div>
</body>
<footer>
&copy;2018 E.N.Paul
</footer>
</html>