Skip to content
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.

Layout proposal #88

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/pages/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ block body
.about.l-absolute-centered
+header(data.index.header)
p!= helpers.markdown(data.index.content)

.links.container
.content.l-grid
.l-one-third.t-base
a(href="https://github.com/ginetta/skeleton/wiki") Documentation
.l-one-third.t-base
a(href="https://github.com/ginetta/skeleton") Source Code
.l-one-third.t-base
a(href="https://github.com/ginetta/skeleton/issues") Issues

7 changes: 6 additions & 1 deletion src/styles/_1.typography.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Typography settings
*/
$base-font-size : 1em;
$base-font-size : 1rem;
$base-font-family : sans-serif;
$base-font-weight : 300;
$base-font-style : normal;
Expand All @@ -18,6 +18,11 @@ $base-line-height : 1.5;
* Typography classes
*/

.t-base {
@include base-font;
font-size: $base-font-size;
}

.t-title {
@include base-font;
font-size: 5rem;
Expand Down
13 changes: 13 additions & 0 deletions src/styles/_4.layout.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
@include sensibleGrid($modern: true);

/* Terminology for a responsive center column */
.container {
padding: 0 5px;
}

.content {
margin:0 auto;
max-width: 1051px;
}


/* basic structure */
.l-grid {
overflow: hidden;
Expand Down
1 change: 1 addition & 0 deletions src/styles/styles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import
"sensible/mediaqueries",
"sensible/grid",

"0.settings",
"1.typography",
Expand Down