* restructure of all templates and pages
* fixed gulp reloading of pages
* restructured style elements accroding to HTML5.2 doc
* changed basic line-height
* added positional styles
* added demo_module styles
This commit is contained in:
Stephan 2018-08-31 18:52:21 +02:00
parent a810ec2770
commit 0a78f526f5
34 changed files with 1454 additions and 1208 deletions

View file

@ -1,6 +1,45 @@
// Links
// Text-Level semantics
// -----------------------------------------------------------------------------
// a
// em
// strong
// small
// s
// cite
// q
// dfn
// abbr
// ruby
// rb
// rt
// rtc
// rp
// data
// time
// code
// var
// samp
// kbd
// sub
// sup
// i
// b
// u
// mark
// bdi
// bdo
// span
// br
// wbr
// -----------------------------------------------------------------------------
// Edits
// -----------------------------------------------------------------------------
// ins
// del
// Links
a {
color: $basic_link_color;
// color: lighten($basic_action_color, 20%);
@ -46,9 +85,7 @@ a {
}
// Other elements
// -----------------------------------------------------------------------------
// Italic, Emphasis
i, em {
font-style: italic;
}
@ -58,20 +95,27 @@ i, em {
color: $brightest_color;
}
// Bold, Strong
b, strong {
font-weight: 500; // TODO maybe bolder
}
// Small
small {
}
// No longer accurate or no longer relevant
s {
// Cite
}
// Citation
cite {
font-style: italic;
}
// Phrasing content, quoted
q {
}
@ -84,6 +128,26 @@ abbr {
}
ruby {
}
rb {
}
rt {
}
rtc {
}
rp {
}
data {
}
@ -104,6 +168,10 @@ code {
color: $basic_font_color;
}
var {
}
samp {
}
@ -137,6 +205,11 @@ mark {
background-color: $darkest_color;
}
bdi, bdo {
}
// Span
span {
}
@ -144,6 +217,7 @@ span {
@extend %solo;
}
// Linebreak
br {
}
@ -169,19 +243,19 @@ del {
// General Classes
// ------------------------------------------------------------------------------
.txt-tiny {
.txt_tiny {
font-size: .5em !important;
}
.txt-smaller {
.txt_smaller {
font-size: .75em !important;
}
.txt-larger {
.txt_larger {
font-size: 1.2em !important;
}
.txt-huge {
.txt_huge {
font-size: 3em !important;
}