1
0
Fork 0
This repository has been archived on 2020-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
Website_MinisteriumfuerInte.../scss/_defaults.scss

96 lines
1.2 KiB
SCSS
Raw Normal View History

2014-06-16 22:10:42 +02:00
/* Vars
--------------------------*/
$font-sans-serif: 'Open Sans', 'Calibri', 'Helvetica', 'Arial', sans-serif;
$font-serif: 'Georgia', serif;
$font-mono: 'Courier', monospace;
/* Reset
--------------------------*/
*, *::before, *::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
height: 100%;
}
.fa {
margin-right: 0.3em;
speak: none; /* Won't speak the symbol */
}
/* Cleafix
--------------------------*/
.clearfix::before,
.clearfix::after {
content: " ";
display: table;
}
.clearfix::after {
clear: both;
}
.clearfix {
*zoom: 1;
}
/* FLUIDITY v0.1.0
@mrmrs - http://mrmrs.cc MIT
--------------------------*/
img, canvas, iframe, video, svg { max-width: 100%; }
/* Grid and stuff
--------------------------*/
.container {
margin: 0 auto;
/*max-width: 960px;
width: 90%;*/
}
.row {
overflow: hidden;
max-width: 960px;
margin: 0 auto;
}
.fullrow {
max-width: 100%;
}
.column {
float: left;
margin-left: 5%;
}
.column:first-child {
margin-left: 0;
}
.column.full {
width: 100%;
}
.column.three-fourth {
width: 63.75%;
}
.column.two-thirds {
width: 65%;
}
.column.half {
width: 47.5%;
}
.column.one-third {
width: 30%;
}
.column.one-fourth {
width: 21.25%;
}