- added possibility to add data into tempaltes via json
- restructured output files
- some work on styles
This commit is contained in:
Stephan 2018-05-08 23:00:46 +02:00
parent 1bb57b109b
commit 8bc8da74db
18 changed files with 1004 additions and 199 deletions

View file

@ -57,16 +57,6 @@
height: 100vh;
}
.txt_center {
text-align: center !important;
}
.txt_right {
text-align: right !important;
}
.txt_left {
text-align: left !important;
}
.space_right {
margin-right: $space_3;
}
@ -108,8 +98,16 @@
overflow: auto;
}
.float_space_left {
.float_left {
float: left;
}
.float_right {
float: right;
}
.float_space_left {
@extend .float_left;
margin-right: $space_3;
}
@ -123,6 +121,15 @@
}
// Inlining
// ------------------------------------------------------------------------------
.inline {
display: inline-block;
}
// Positioned elements
// ------------------------------------------------------------------------------
%full_viewport {