interlink sites
This commit is contained in:
parent
856ed0eace
commit
3a4720ff1a
4 changed files with 73 additions and 18 deletions
|
@ -57,6 +57,7 @@ hr {
|
||||||
border: 0;
|
border: 0;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
|
margin: 5px 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
@ -74,6 +75,10 @@ header a:visited {
|
||||||
color: darkgreen;
|
color: darkgreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header > hr {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0 20px 0;
|
padding: 0 20px 0;
|
||||||
|
@ -111,6 +116,46 @@ article li {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.folders {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rider {
|
||||||
|
display: inline-block;
|
||||||
|
border: 1px solid black;
|
||||||
|
border-bottom: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
border-bottom-left-radius: 0px;
|
||||||
|
border-bottom-right-radius: 0px;
|
||||||
|
padding: 10px
|
||||||
|
}
|
||||||
|
|
||||||
|
.bloglink {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
font-family: 'Didact Gothic';
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bloglink > a, .bloglink > a:link, .bloglink > a:visited {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.portfoliolink {
|
||||||
|
background-color: #161612;
|
||||||
|
font-family: 'Grabstein Grotesk';
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.portfoliolink > a, .portfoliolink > a:link, .portfoliolink > a:visited {
|
||||||
|
color: #efffbe;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
grid-area: nav;
|
grid-area: nav;
|
||||||
}
|
}
|
||||||
|
@ -180,10 +225,6 @@ nav li a:visited {
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
|
||||||
margin: 5px 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
color: #555;
|
color: #555;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
|
|
|
@ -18,3 +18,10 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Grabstein Grotesk';
|
||||||
|
src: url('/font/grabstein.ttf') format('truetype');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
BIN
site/font/grabstein.ttf
Normal file
BIN
site/font/grabstein.ttf
Normal file
Binary file not shown.
|
@ -26,7 +26,14 @@
|
||||||
</head>
|
</head>
|
||||||
<body itemscope itemtype="https://schema.org/Blog">
|
<body itemscope itemtype="https://schema.org/Blog">
|
||||||
<header>
|
<header>
|
||||||
<a href="/">Nek0's Blog</a>
|
<ul class="folders">
|
||||||
|
<li class="bloglink rider">
|
||||||
|
<a href="/">Blog</a>
|
||||||
|
</li>
|
||||||
|
<li class="portfoliolink rider">
|
||||||
|
<a href="https://art.nek0.eu/">Art Portfolio</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
</header>
|
</header>
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
|
|
Loading…
Reference in a new issue