Initial content

This commit is contained in:
Kevin Cotugno 2016-08-31 23:09:57 -07:00
parent dccbc35387
commit b79b0f277b
4 changed files with 155 additions and 6 deletions

100
css/site.css Normal file
View File

@ -0,0 +1,100 @@
/* Stylesheet for kevincotugno.com */
html {
font-family: serif;
font-size: 12pt;
}
body {
padding: 25px;
padding-left: 50px;
padding-right: 50px;
}
.construction {
color: #d51a00;
text-align: center;
}
.aboutme {
float: left;
width: 75%;
}
.openprojects {
float: left;
width: 25%;
box-shadow: 2px 2px 10px;
border-radius: 2em;
padding-top: 20px;
padding-bottom: 20px;
}
h1 {
font-size: 2.2em;
padding-left: 25px;
padding-right: 25px;
}
h2 {
font-size: 1.8em;
padding-left: 25px;
padding-right: 25px;
}
p {
font-size: 1.2em;
line-height: 150%;
padding-left: 25px;
padding-right: 25px;
}
a {
text-decoration: none;
color: blue;
}
a:hover {
color: #8ac0ff;
transition: color 0.25s;
}
a:visited {
color: blue;
}
a:visited:hover{
color: #8ac0ff;
transition: color 0.25s;
}
a img {
color: black;
}
a:hover img {
color: black;
}
a:visited img {
color: black;
}
a:visited:hover img {
color: black;
}
.github-image {
border-radius: 100%;
width: 40px;
height: 40px;
}
.generic-shadow:hover {
box-shadow: 2px 2px 5px;
transition: box-shadow 0.5s;
}
footer {
text-align: center;
margin: 25px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,9 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<title>Under Construction</title>
</head>
<body>
<p>This site is currently under construction.</p>
</body>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Software Developer~Philosopher~Amateur Radio Operator</title>
<link rel="stylesheet" href="css/site.css">
<script src="js/site.js"></script>
</head>
<body>
<div class="construction">
<h1><strong>This site is currently under development</strong></h1>
</div>
<div class="container">
<div class="aboutme">
<h1>Software Developer, Philosopher, Ham Radio Operator</h1>
<h1>About me</h1>
<p>
I am a software developer interested in philosophy, theology, language, physics, chemistry, language, visual effects, ham radio, and all varieties of programming.</br>
Recently, I gradutated from <a href="https://thomasaquinas.edu">Thomas Aquinas College</a> where I studied the greatest works of western civilization; here, I found my love of the truth, love of philosophy, love of theology, love of math, and love of my life.</br>
</br>
This website&mdash;for now&mdash;will collect my open source projects. In the future, I may choose to share my philosophical thoughts. (Maybe my thesis)
</p>
</div>
<div class="openprojects">
<h1>Current open source project</h1>
<h2><a href="https://github.com/kcotugno/OpenARLog">OpenARLog</a></h2>
<p>
An open source amateur radio logging application.</br>
You can find the latest release <a href="https://github.com/kcotugno/OpenARLog/releases" class="text-link">here</a>.
</p>
<h2><a href="https://github.com/kcotugno/libhamdata">libhamdata</a></h2>
<p>A small library for converting the FCC amateur radio database into a more reasonable format.</p>
<h1>Old open source projects</h1>
<h2><a href="https://github.com/kcotugno/euclidian-perfection">Euclidean Perfection</a></h2>
<p>Find perfect number based through Euclid.</p>
</div>
<footer>
<a href="https://github.com/kcotugno"><img src="image/Github-Mark-120px-plus.png" alt="Github" class="github-image generic-shadow" /></a>
</footer>
</div>
</body>
</html>

0
js/site.js Normal file
View File