Coding style decided
This commit is contained in:
19
public/styles/elements/_a.scss
Normal file
19
public/styles/elements/_a.scss
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* A
|
||||
* Base A/Anchor Seettings
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/settings/colors.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/23
|
||||
*/
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $s-color--link;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: $s-color--link-hover;
|
||||
}
|
13
public/styles/elements/_headings.scss
Normal file
13
public/styles/elements/_headings.scss
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Headings
|
||||
* Styles for headings 1 through 6
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/settings/typography.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/05/5
|
||||
*/
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font-family: $s-font--stack-headings;
|
||||
}
|
10
public/styles/elements/all.scss
Normal file
10
public/styles/elements/all.scss
Normal file
@ -0,0 +1,10 @@
|
||||
/*
|
||||
* All
|
||||
* Styles and changes for the ALL HTML Elements
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/05/03
|
||||
*/
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
15
public/styles/elements/body.scss
Normal file
15
public/styles/elements/body.scss
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Body
|
||||
* Styles and changes for the body HTML element.
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/05/03
|
||||
*/
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
|
||||
font-family: $s-font--stack-default;
|
||||
font-size: $s-font--size--base;
|
||||
}
|
9
public/styles/elements/html.scss
Normal file
9
public/styles/elements/html.scss
Normal file
@ -0,0 +1,9 @@
|
||||
/*
|
||||
* HTML
|
||||
* Styles and changes for the HTML, HTML element.
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/05/03
|
||||
*/
|
||||
html {
|
||||
}
|
Reference in New Issue
Block a user