Various fixes
This commit is contained in:
parent
7cffab96da
commit
47c663003e
@ -19,18 +19,19 @@ h1, h2, h3, h4, h5, p {
|
||||
#nav {
|
||||
background-color: black;
|
||||
position: fixed;
|
||||
display: flex;
|
||||
display: block;
|
||||
justify-content: center;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
box-shadow: 0 0 0.1em dimgray;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#nav a, #nav-mini .menu a {
|
||||
color: white;
|
||||
display: block;
|
||||
float: center;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-family: sans-serif;
|
||||
font-size: calc(0.75em + 0.05vw);
|
||||
font-weight: bold;
|
||||
@ -60,6 +61,7 @@ h1, h2, h3, h4, h5, p {
|
||||
}
|
||||
|
||||
#nav-mini .menu a {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 1em 0 1em 0;
|
||||
border-bottom: 0.1em solid dimgray;
|
||||
@ -142,6 +144,11 @@ h1, h2, h3, h4, h5, p {
|
||||
text-shadow: 0 0 0.1em black;
|
||||
}
|
||||
|
||||
#home .social, #footer .social {
|
||||
display: block;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#home .social a, #footer .social a {
|
||||
height: calc(1em + 1vw);
|
||||
width: calc(1em + 1vw);
|
||||
@ -152,15 +159,11 @@ h1, h2, h3, h4, h5, p {
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
margin: 0 1em;
|
||||
display: block;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
filter: invert(100%) drop-shadow(0 0 0.1em black);
|
||||
}
|
||||
|
||||
#home .social, #footer .social {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#home .social a:hover {
|
||||
filter: invert(90%) drop-shadow(0 0 0.1em black);
|
||||
}
|
||||
|
52
index.html
52
index.html
@ -1,6 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="title" content="Manos Katsomallos" />
|
||||
<meta name="description" content="Computer scientist, problem solver, son of his father and not his brother.">
|
||||
<meta name="keywords" content="manos katsomallos, emmanouil katsomallos, katsomallos">
|
||||
@ -14,34 +15,34 @@
|
||||
<title>Manos Katsomallos</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav id="nav">
|
||||
<a href="#home">Home</a>
|
||||
<a href="#about">About</a>
|
||||
<a href="#experience">Experience</a>
|
||||
<a href="#education">Education</a>
|
||||
<a href="#contact">Contact</a>
|
||||
<nav id="nav"
|
||||
><a href="#home">Home</a
|
||||
><a href="#about">About</a
|
||||
><a href="#experience">Experience</a
|
||||
><a href="#education">Education</a
|
||||
><a href="#contact">Contact</a>
|
||||
</nav>
|
||||
<nav id="nav-mini">
|
||||
<input type="checkbox" id="nav-ctrl"/>
|
||||
<label for="nav-ctrl"></label>
|
||||
<div class="menu">
|
||||
<a href="#home">Home</a>
|
||||
<a href="#about">About</a>
|
||||
<a href="#experience">Experience</a>
|
||||
<a href="#education">Education</a>
|
||||
<a href="#contact">Contact</a>
|
||||
<div class="menu"><!--
|
||||
--><a href="#home">Home</a><!--
|
||||
--><a href="#about">About</a><!--
|
||||
--><a href="#experience">Experience</a><!--
|
||||
--><a href="#education">Education</a><!--
|
||||
--><a href="#contact">Contact</a>
|
||||
</div>
|
||||
</nav>
|
||||
<div id="home">
|
||||
<div class="content">
|
||||
<div class="title">Manos Katsomallos</div>
|
||||
<div class="subtitle">Computer scientist, problem solver,<br>son of his father and not his brother.</div>
|
||||
<div class="social">
|
||||
<a class="email" href="mailto:manos@delkappa.com" target="_blank"></a>
|
||||
<a class="github" href="https://github.com/delkappa" target="_blank"></a>
|
||||
<a class="ig" href="https://instagram.com/delkappa" target="_blank"></a>
|
||||
<a class="in" href="https://linkedin.com/in/delkappa" target="_blank"></a>
|
||||
<a class="tr" href="https://twitter.com/delkappa" target="_blank"></a>
|
||||
<div class="social"><!--
|
||||
--><a class="email" href="mailto:manos@delkappa.com" target="_blank"></a><!--
|
||||
--><a class="github" href="https://github.com/delkappa" target="_blank"></a><!--
|
||||
--><a class="ig" href="https://instagram.com/delkappa" target="_blank"></a><!--
|
||||
--><a class="in" href="https://linkedin.com/in/delkappa" target="_blank"></a><!--
|
||||
--><a class="tr" href="https://twitter.com/delkappa" target="_blank"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -189,17 +190,18 @@
|
||||
</p>
|
||||
</div>
|
||||
<a class="button" href="https://cloud.delkappa.com/s/AXdRFidn8xKwPLC/download" target="_blank">
|
||||
<div class="icon"></div><div class="label">Download resume</div>
|
||||
<div class="icon"></div><!--
|
||||
--><div class="label">Download resume</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer id="footer">
|
||||
<div class="social">
|
||||
<a class="email" href="mailto:manos@delkappa.com" target="_blank"></a>
|
||||
<a class="github" href="https://github.com/delkappa" target="_blank"></a>
|
||||
<a class="ig" href="https://instagram.com/delkappa" target="_blank"></a>
|
||||
<a class="in" href="https://linkedin.com/in/delkappa" target="_blank"></a>
|
||||
<a class="tr" href="https://twitter.com/delkappa" target="_blank"></a>
|
||||
<div class="social"><!--
|
||||
--><a class="email" href="mailto:manos@delkappa.com" target="_blank"></a><!--
|
||||
--><a class="github" href="https://github.com/delkappa" target="_blank"></a><!--
|
||||
--><a class="ig" href="https://instagram.com/delkappa" target="_blank"></a><!--
|
||||
--><a class="in" href="https://linkedin.com/in/delkappa" target="_blank"></a><!--
|
||||
--><a class="tr" href="https://twitter.com/delkappa" target="_blank"></a>
|
||||
</div>
|
||||
<div class="text">© 2020 Manos Katsomallos</div>
|
||||
</footer>
|
||||
|
Loading…
Reference in New Issue
Block a user