Add jekyll site

This commit is contained in:
Rnhmjoj 2014-05-25 21:25:36 +02:00
parent 2da2958dc8
commit 1dcef7edc5
5 changed files with 52 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
_site
Gemfile.lock

2
Gemfile Normal file
View File

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'github-pages'

10
_layouts/main.html Normal file
View File

@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<title> {{ page.title }} </title>
<link rel="stylesheet" type="text/css" href="{{ page.css }}.css" />
</head>
<body>
<div id="container"> {{ content }} </div>
</body>
</html>

View File

@ -1,3 +1,9 @@
---
layout: main
css: main
title: Geometria Solida
---
# Postulati dello spazio
## Postulato n. 1

32
main.css Normal file
View File

@ -0,0 +1,32 @@
body {
font-family: "PT Serif", serif;
font-size: 1.2em;
color: #555;
background: #afafaf;
}
h1 {
text-transform: uppercase;
text-align: center;
}
h1, h2{
color: #454545;
}
img {
border: 6px solid #dfdfdf;
border-radius: 5px;
width: 70%;
margin-left: 15%;
}
#container {
width: 36em;
margin: 2em;
margin-left: auto;
margin-right: auto;
background: #fff;
padding: 2em;
border-radius: 3px;
box-shadow: 4px 5px 6px 0px #555
}