Simplified look/content

This commit is contained in:
Kevin Cotugno 2019-10-13 00:10:16 -07:00
parent 84ba26973f
commit 1268736020
2 changed files with 59 additions and 146 deletions

View File

@ -1,120 +1,63 @@
/* Stylesheet for kevincotugno.com */ /* Stylesheet for kevincotugno.com */
*, *:before, *:after { *, ul, a {
box-sizing: border-box; padding: 0;
} margin: 0;
text-decoration: none;
html {
font-family: serif;
font-size: 12pt;
}
body {
background-color: #dfe0e8;
}
.content {
display: flex;
flex-flow: row;
flex-wrap: wrap;
max-width: 1250px;
margin: 10px auto 10px auto;
}
.construction {
color: #d51a00;
text-align: center;
}
.card {
box-shadow: 1px 1px 8px grey;
border-radius: 1em;
margin: 10px;
}
.card-content {
margin: 25px;
}
.aboutme {
flex: 3;
}
.openprojects {
flex: 1;
}
h1 {
font-size: 2.0em;
}
h2 {
font-size: 1.5em;
} }
p { p {
font-size: 1.2em; font-size: 1.5em;
line-height: 1.5em;
} }
a { body {
text-decoration: none; background-color: #fdf6e3;
color: blue; color: #657b83;
transition: 0.25s; font-family: serif;
} }
a:hover { .center {
color: #8ac0ff; margin: 0 auto 0 auto;
transition: color 0.25s;
} }
a:visited { .readable {
color: blue; max-width: 20em;
} }
a:visited:hover{ .text-center {
color: #8ac0ff;
}
a img {
color: black;
}
a:hover img {
color: black;
}
a:visited img {
color: black;
}
a:visited:hover img {
color: black;
}
.image {
width: 40px;
height: 40px;
margin: 0 5px 0 5px;
}
.github-image {
border-radius: 100%;
}
.gitlab-image {
border-radius: 50%;
}
.generic-shadow {
transition: 0.5s;
}
.generic-shadow:hover {
box-shadow: 2px 2px 5px;
}
footer {
text-align: center; text-align: center;
} }
.title {
margin-top: 3em;
margin-bottom: 1em;
color: #586e75;
font-size: 2.5em;
}
.footer {
text-align: center;
margin: 3em auto 0 auto;
display: flex;
flex-direction: row;
max-width: 20em;
}
.footer-link {
display: inline;
margin: 0 0.5em 0 0.5em;
width: 100%;
border-style: solid;
border-width: 0.15em;
height: 3em;
color: #93a1a1;
}
.footer-link a {
display: inline-block;
width: 100%;
height: 100%;
color: inherit;
font-size: 1.15em;
line-height: 2.5em;
}

View File

@ -6,54 +6,24 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kevin Cotugno: Software Developer~Philosopher~Amateur Radio Operator</title> <title>Kevin Cotugno</title>
<link rel="stylesheet" href="css/site.css"> <link rel="stylesheet" href="css/site.css">
<script src="js/site.js"></script>
</head> </head>
<body> <body>
<div class="container"> <div>
<div class="content"> <h1 class="title text-center">Kevin Cotugno</h1>
<div class="card aboutme"> <p class="center text-center readable">I am a software engineer with a
<div class="card-content"> passion for technical and business problem solving. I specialize
<h1>Kevin Cotugno: Software Developer</h1> in <i>Ruby On Rails</i> and <i>Go</i>. If you find yourself in need of a
<h1>About me</h1> consultant in one of these technologies, do not hesitate to contact
<p> me.</p>
I am a software developer interested in philosophy, theology, physics, 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.
</p>
</div>
</div>
<div class="card openprojects"> <div class="footer">
<div class="card-content"> <div class="footer-link"><a href="mailto:kevin@kevincotugno.com">Email</a></div>
<h1>Current open source project</h1> <div class="footer-link"><a href="http://git.cotugno.family/kcotugno/">Git</a></div>
<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/euclidean-perfection">Euclidean Perfection</a></h2>
<p>Find perfect numbers. Based on Euclid's proof.</p>
</div>
</div>
</div> </div>
<footer>
<a href="https://github.com/kcotugno"><img src="image/GitHub-Mark-120px-plus.png" alt="Github" class="image github-image generic-shadow" /></a>
<a href="https://gitlab.com/kcotugno"><img src="image/gitlab-logo.png" alt="Gitlab" class="image gitlab-image generic-shadow"/></a>
</footer>
</div> </div>
</body> </body>
</html> </html>