Updating...

This commit is contained in:
Bill Niblock 2015-02-23 15:01:40 -05:00
parent d7f432b00a
commit 4115092ff2
3 changed files with 13 additions and 7 deletions

View file

@ -8,12 +8,14 @@ Nothing I say is profound or visionary, and sometimes it makes sense.
###To-Do ###To-Do
* [ ] Finalize migration to Jekyll * [ ] Finalize migration to Jekyll
* [ ] CSS: Establish responsive design.
* [ ] Work on GitHub project pages for few projects * [ ] Work on GitHub project pages for few projects
* [ ] Posts? Content? Establish a purpose. * [ ] Posts? Content? Establish a purpose.
####Latest Update :: 2015/02/23 ####Latest Update :: 2015/02/23
* + Updates site to make use of Jekyll * + Updates site to make use of Jekyll
* + Modified Readme to include the License * + Modified Readme to include the License
* + Updated Home page information
Previous updates can be found here (or below, for now). Previous updates can be found here (or below, for now).

View file

@ -11,7 +11,7 @@
any posts and projects I've made available in the menu on the right. any posts and projects I've made available in the menu on the right.
Just click the menu button in the upper-right to view it.</p> Just click the menu button in the upper-right to view it.</p>
<h3>About the Site</h3> <h2>About the Site</h2>
<p>The Internet Vagabond is a simple website I use for the rare <p>The Internet Vagabond is a simple website I use for the rare
blog posts I make, information about me and the projects I work blog posts I make, information about me and the projects I work
on, and a digital plot of e-land. It is programmed as much in on, and a digital plot of e-land. It is programmed as much in
@ -21,7 +21,7 @@
technical details, check out the GitHub Project page for this technical details, check out the GitHub Project page for this
repository. You can easily get to it via the menu on the right.</p> repository. You can easily get to it via the menu on the right.</p>
<h3>About the Vagabond</h3> <h2>About the Vagabond</h2>
<p>My name is Bill Niblock, and I consider myself a citizen of the <p>My name is Bill Niblock, and I consider myself a citizen of the
Internet. I'm a computer scientist by education, a technologist by Internet. I'm a computer scientist by education, a technologist by
trade, a gamer by hobby, a philosopher by choice, and the list goes trade, a gamer by hobby, a philosopher by choice, and the list goes

View file

@ -126,14 +126,14 @@ header {
********/ ********/
main { main {
position: fixed; top: 0px; bottom: 0px; height: 100%; position: fixed; top: 0px; left: 0px; bottom: 0px; z-index: 0;
margin: 40px 40px; padding: 10px; z-index: 0; overflow: auto;
background-color: #EBEBFA; background-color: #EBEBFA;
} }
article { article {
position: relative; position: relative; width: 60%;
margin: 0px auto; padding: 0px; margin: 50px auto; padding: 10px;
} }
article h1 { article h1 {
@ -147,10 +147,14 @@ article h1::first-letter {
color: white; text-shadow: 0px 0px 10px blue; color: white; text-shadow: 0px 0px 10px blue;
} }
article h3 { article h2 {
text-align: right; text-align: right;
padding: 0px; padding: 0px;
border-bottom: 1px solid darkgrey; border-bottom: 1px solid darkgrey;
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif; font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-shadow: 2px 2px #DEDEDE; color: darkgrey; letter-spacing: 1.2em; text-shadow: 2px 2px #DEDEDE; color: darkgrey; letter-spacing: 1.2em;
} }
article p {
padding: 0px 10px;
}