update hello world

This commit is contained in:
2018-01-14 04:43:41 +08:00
parent 879b728d25
commit 236049c8f2
3 changed files with 21 additions and 30 deletions

View file

@ -1,13 +1,6 @@
--- ---
layout: post
--- ---
# Sample Draft About Me
How to Create a Github Pages blog *FREE HOSTING*
- a bit technical, you might see some code. Test edit.
1. Github account
2. Set up SSH Keys (optional, but beneficial)
2. Github repo
3. Advanced: Jekyll

View file

@ -3,9 +3,11 @@ title: "Hello, World!"
permalink: '/hello-world' permalink: '/hello-world'
--- ---
Oh, another new blog! What's this about? It's kind of getting old, I know.
**Full Hacker** is like [Life Hacker](https://lifehacker.com), but for developers. This will be a place to share some "Life Hacks" that developers want to share to other developers, like automation, new tech, freebies, tools, etc. A new blog... *again?* What's this all about?
**Full Hacker** is like [Life Hacker](https://lifehacker.com), but for developers. This will be a place to share some "Life Hacks" that developers want to share to other developers, like automation, new tech, tools, setups, and all sorts of time-saving tips and tricks.
This is not a place to ask coding questions. We got [Stack Overflow](https://stackoverflow.com) for that already. Instead, here, we just share secrets that make our work and life easier as developers. Let's talk about more of this later. ;) This is not a place to ask coding questions. We got [Stack Overflow](https://stackoverflow.com) for that already. Instead, here, we just share secrets that make our work and life easier as developers. Let's talk about more of this later. ;)

View file

@ -6,8 +6,21 @@
@import url(type-js.css); @import url(type-js.css);
@import url(vim.css); @import url(vim.css);
html,
body { body {
background: #333; font: 300 21px Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #ddd;
background-color: #333;
-webkit-box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
text-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-font-feature-settings: "kern" 1;
-moz-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal;
margin: 0;
} }
.site-title { .site-title {
@ -30,7 +43,7 @@ body {
-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1); -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1); -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
box-shadow: 0 3px 10px rgba(0,0,0,0.1); box-shadow: 0 3px 10px rgba(0,0,0,0.1);
font-size: 16px; font-size: 18px;
} }
.site-nav .page-link.current { .site-nav .page-link.current {
@ -148,21 +161,4 @@ a:hover {
} }
/**/ /**/
html,
body {
font: 300 21px Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #ddd;
background-color: #333;
-webkit-box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
box-shadow: inset 0 3px 30px rgba(0,0,0,0.3);
text-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-font-feature-settings: "kern" 1;
-moz-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal;
margin: 0;
}