Compare commits

..

No commits in common. "d2294d85723be1768d4092bd8dd98f9bbd253945" and "ef96bd935b254c5a15364da098bc8a506b412bcc" have entirely different histories.

2 changed files with 5 additions and 49 deletions

View file

@ -1,42 +1,14 @@
body { body {
color: #B0B0B0; color: #ddd;
background: #302A3F; background: #151515;
}
:link {
color: cyan;
font-style: italic;
text-decoration: none;
transition: color 0.2s;
}
:link:hover {
color: lightblue;
}
ul {
display: flex;
flex-direction: row;
justify-content: center;
list-style-type: none;
margin-top: 1em;
padding: 0px;
}
ul li {
padding: 0em 0.3em 0em 0.3em;
} }
#big_title { #big_title {
text-align: center; text-align: center;
font-size: 2.5em; margin-bottom: 0.3em;
margin-bottom: 0.2em;
} }
#title_separator { #title_separator {
height: 1.5px; height: 2px;
background-color: #ddd; background-color: #ddd;
opacity: 0.5;
margin-left: 2em;
margin-right: 2em;
} }

View file

@ -9,23 +9,7 @@
<div id="title_separator"></div> <div id="title_separator"></div>
<ul> <ul>
<li><a href="/about"> About </a></li> <li><a href="/about"> about </a></li>
<li><a href="/blog"> Blog </a></li>
<li><a href="/projects"> Projects </a></li>
<li><a href="/artwork"> Artworks </a></li>
</ul> </ul>
<div id="main_content_wrapper">
{% block content %}<h3>Soon there shall be content!</h3>{% endblock %}
</div>
<div id="sidebar-wrapper">
{%block sidebar %}
<ul>
<li> Test 1 </li>
</ul>
{% endblock %}
</div>
</body> </body>
</html> </html>