Customize small features

master
nschoe 9 years ago
parent fc922da6a7
commit 18e767ccd4

4
.gitignore vendored

@ -0,0 +1,4 @@
shell.nix
dist/
_site/
_cache/

@ -21,11 +21,13 @@ html,body,p,div,h1,h2,h3,h4,h5,h6,img,article,section {
src: url('/fonts/oxygen.otf'); src: url('/fonts/oxygen.otf');
}*/ }*/
/* GENERAL */ /* GENERAL */
html { html {
font-family: 'Oxygen', sans-serif; /*font-family: 'Oxygen', sans-serif;*/
font-family: 'Lora', sans-serif;
font-size: 13pt;
} }
body { body {
@ -96,6 +98,7 @@ header {
height: 60px; height: 60px;
background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7)); background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7));
border-bottom: 3px solid black; border-bottom: 3px solid black;
font-size: 11pt;
} }
header > a { header > a {

@ -44,7 +44,7 @@ function computeScroll () {
} }
function animateScroll (timestamp) { function animateScroll (timestamp) {
if (timestamp - scrollTS >= 500) { if (timestamp - scrollTS >= 100) {
scrollTS = timestamp; scrollTS = timestamp;
var newScroll = computeScroll(); var newScroll = computeScroll();

@ -115,7 +115,8 @@ nschoeslabsRSSConfig = FeedConfiguration
config :: Configuration config :: Configuration
config = defaultConfiguration config = defaultConfiguration
{ {
deployCommand = "rsync -avz -e ssh ./_site/ nschoe@nschoe.com:public_html/" -- deployCommand = "rsync -avz -e ssh ./_site/ nschoe@nschoe.com:public_html/"
deployCommand = "rsync -avz -e ssh ./_site/ nschoe@178.32.220.77:/www/"
} }
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

@ -10,7 +10,8 @@
<title>nschoe's labs - $title$</title> <title>nschoe's labs - $title$</title>
<link href='http://fonts.googleapis.com/css?family=Bubbler+One' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Bubbler+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'> <!-- <link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'> -->
<link href='https://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/css/default.css"> <link rel="stylesheet" type="text/css" href="/css/default.css">
<link rel="stylesheet" type="text/css" href="/css/syntax_highlighting.css"> <link rel="stylesheet" type="text/css" href="/css/syntax_highlighting.css">
</head> </head>

Loading…
Cancel
Save