Add jekyll site
This commit is contained in:
parent
2da2958dc8
commit
1dcef7edc5
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
_site
|
||||||
|
Gemfile.lock
|
10
_layouts/main.html
Normal file
10
_layouts/main.html
Normal 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>
|
@ -1,3 +1,9 @@
|
|||||||
|
---
|
||||||
|
layout: main
|
||||||
|
css: main
|
||||||
|
title: Geometria Solida
|
||||||
|
---
|
||||||
|
|
||||||
# Postulati dello spazio
|
# Postulati dello spazio
|
||||||
|
|
||||||
## Postulato n. 1
|
## Postulato n. 1
|
32
main.css
Normal file
32
main.css
Normal 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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user