Styling
This commit is contained in:
parent
476ef3ec81
commit
a42633edd2
@ -16,10 +16,10 @@
|
|||||||
<link rel="canonical" href="{{ page.url | absolute_url }}">
|
<link rel="canonical" href="{{ page.url | absolute_url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ '/public/css/poole.css' | absolute_url }}">
|
<link rel="stylesheet" href="{{ '/public/css/poole.css?' | append: site.time | absolute_url }}">
|
||||||
<link rel="stylesheet" href="{{ '/public/css/syntax.css' | absolute_url }}">
|
<link rel="stylesheet" href="{{ '/public/css/syntax.css?' | append: site.time | absolute_url }}">
|
||||||
<link rel="stylesheet" href="{{ '/public/css/lanyon.css' | absolute_url }}">
|
<link rel="stylesheet" href="{{ '/public/css/lanyon.css?' | append: site.time | absolute_url }}">
|
||||||
<link rel="stylesheet" href="{{ '/public/css/custom.css' | absolute_url }}">
|
<link rel="stylesheet" href="{{ '/public/css/custom.css?' | append: site.time | absolute_url }}">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700%7CPT+Sans:400">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700%7CPT+Sans:400">
|
||||||
<link rel="shortcut icon" href="{{ '/public/favicon.png' | absolute_url }}">
|
<link rel="shortcut icon" href="{{ '/public/favicon.png' | absolute_url }}">
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
|
<!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
|
||||||
styles, `#sidebar-checkbox` for behavior. -->
|
styles, `#sidebar-checkbox` for behavior. -->
|
||||||
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox" checked>
|
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
|
||||||
|
|
||||||
<!-- Toggleable sidebar -->
|
<!-- Toggleable sidebar -->
|
||||||
<div class="sidebar" id="sidebar">
|
<div class="sidebar" id="sidebar">
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
|
|
||||||
<body class="layout-reverse sidebar-overlay .theme-base-0d">
|
<body class="layout-reverse sidebar-overlay">
|
||||||
|
|
||||||
{% include sidebar.html %}
|
{% include sidebar.html %}
|
||||||
|
|
||||||
@ -12,13 +12,20 @@
|
|||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="masthead">
|
<div class="masthead">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="masthead-title">
|
<h1 class="masthead-title inline-block">
|
||||||
<a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
|
<a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
|
||||||
<small>{{ site.tagline }}</small>
|
<small>{{ site.tagline }}</small>
|
||||||
</h3>
|
</h1>
|
||||||
|
<img class="inline-block" src = '{{ site.baseurl | absolute_url }}/public/favicon.png' />
|
||||||
|
<div class="navbar">
|
||||||
|
<ul>
|
||||||
|
<li> <a class="navbar-link" href='{{ site.baseurl }}/about'>About</a> <li>
|
||||||
|
<li> <a class="navbar-link" href='{{ site.baseurl }}/categories'>Categories</a> <li>
|
||||||
|
<li> <a class="navbar-link" href='{{ site.baseurl }}/archive'>Archive</a> <li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container content">
|
<div class="container content">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -4,9 +4,11 @@ title: Getting Ready
|
|||||||
categories: ["introduction"]
|
categories: ["introduction"]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
How did I setup this site ?
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
After contemplating about different options for hosting, blogging technologies and domain names for a couple of days, I have settled on the following configurations for now!
|
--------
|
||||||
|
|
||||||
### Domain Name
|
### Domain Name
|
||||||
|
|
||||||
|
@ -14,7 +14,8 @@ title: Home
|
|||||||
|
|
||||||
<span class="post-date">{{ post.date | date_to_string }}</span>
|
<span class="post-date">{{ post.date | date_to_string }}</span>
|
||||||
|
|
||||||
{{ post.content }}
|
{{ post.excerpt }}
|
||||||
|
<p><a href="{{ post.url | absolute_url }}">Read more...</a></p>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1 +1,48 @@
|
|||||||
img[alt="OSI Outline"] { width: 100%; }
|
/* osi */
|
||||||
|
img[alt="OSI Outline"] {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation Bar */
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar ul {
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar ul li {
|
||||||
|
display: inline;
|
||||||
|
display: inline-block;
|
||||||
|
zoom: 1;
|
||||||
|
margin-left: 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-link a{
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.navbar-link:link, a.navbar-link:visited{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #505050;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.navbar-link:hover{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.navbar-link:active{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* General */
|
||||||
|
.inline-block {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -286,7 +286,7 @@ tbody tr:nth-child(odd) th {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
max-width: 38rem;
|
max-width: 50rem;
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user