scss: remove padding in title
This commit is contained in:
parent
0e83193dd1
commit
a7453ef201
2 changed files with 142 additions and 187 deletions
|
@ -1,191 +1,158 @@
|
||||||
/* ------------------ FONT LOADING ------------------- */
|
/* ------------------ FONT LOADING ------------------- */
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'ClearSans';
|
font-family: 'ClearSans';
|
||||||
src: url('../fonts/ClearSans-Light.eot');
|
src: url("../fonts/ClearSans-Light.eot");
|
||||||
src: url('../fonts/ClearSans-Light.woff') format('woff'),
|
src: url("../fonts/ClearSans-Light.woff") format("woff"), url("../fonts/ClearSans-Light.ttf") format("truetype");
|
||||||
url('../fonts/ClearSans-Light.ttf') format('truetype');
|
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-style: normal;
|
font-style: normal; }
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'ClearSans';
|
font-family: 'ClearSans';
|
||||||
src: url('../fonts/ClearSans-Regular.eot');
|
src: url("../fonts/ClearSans-Regular.eot");
|
||||||
src: url('../fonts/ClearSans-Regular.woff') format('woff'),
|
src: url("../fonts/ClearSans-Regular.woff") format("woff"), url("../fonts/ClearSans-Regular.ttf") format("truetype");
|
||||||
url('../fonts/ClearSans-Regular.ttf') format('truetype');
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal; }
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'ClearSans';
|
font-family: 'ClearSans';
|
||||||
src: url('../fonts/ClearSans-Italic.eot');
|
src: url("../fonts/ClearSans-Italic.eot");
|
||||||
src: url('../fonts/ClearSans-Italic.woff') format('woff'),
|
src: url("../fonts/ClearSans-Italic.woff") format("woff"), url("../fonts/ClearSans-Italic.ttf") format("truetype");
|
||||||
url('../fonts/ClearSans-Italic.ttf') format('truetype');
|
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: italic;
|
font-style: italic; }
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'ClearSans';
|
font-family: 'ClearSans';
|
||||||
src: url('../fonts/ClearSans-Medium.eot');
|
src: url("../fonts/ClearSans-Medium.eot");
|
||||||
src: url('../fonts/ClearSans-Medium.woff') format('woff'),
|
src: url("../fonts/ClearSans-Medium.woff") format("woff"), url("../fonts/ClearSans-Medium.ttf") format("truetype");
|
||||||
url('../fonts/ClearSans-Medium.ttf') format('truetype');
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-style: normal;
|
font-style: normal; }
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'ClearSans';
|
font-family: 'ClearSans';
|
||||||
src: url('../fonts/ClearSans-MediumItalic.eot');
|
src: url("../fonts/ClearSans-MediumItalic.eot");
|
||||||
src: url('../fonts/ClearSans-MediumItalic.woff') format('woff'),
|
src: url("../fonts/ClearSans-MediumItalic.woff") format("woff"), url("../fonts/ClearSans-MediumItalic.ttf") format("truetype");
|
||||||
url('../fonts/ClearSans-MediumItalic.ttf') format('truetype');
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-style: italic;
|
font-style: italic; }
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ GLOBAL STYLE ------------------- */
|
/* ------------------ GLOBAL STYLE ------------------- */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: ClearSans, sans-serif;
|
font-family: ClearSans, sans-serif;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 4mm;
|
font-size: 4mm;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
color: #444;
|
color: #444;
|
||||||
font-weight: 400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
|
|
||||||
.night-mode {
|
.night-mode {
|
||||||
color:#BBB;
|
color: #BBB; }
|
||||||
}
|
|
||||||
|
|
||||||
strong {
|
strong {
|
||||||
font-weight: 600;
|
font-weight: 600; }
|
||||||
}
|
|
||||||
|
|
||||||
em {
|
em {
|
||||||
font-style: italic;
|
font-style: italic; }
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color:#2484c1;
|
color: #2484c1;
|
||||||
text-decoration:none;
|
text-decoration: none; }
|
||||||
}
|
|
||||||
|
|
||||||
::selection { background: #2484c1; color: #fff; }
|
::selection {
|
||||||
::-moz-selection { background: #2484c1; color: #fff; }
|
background: #2484c1;
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
|
::-moz-selection {
|
||||||
|
background: #2484c1;
|
||||||
|
color: #fff; }
|
||||||
|
|
||||||
/* ------------------ WRAPPERS ------------------- */
|
/* ------------------ WRAPPERS ------------------- */
|
||||||
|
|
||||||
.text-wrapper {
|
.text-wrapper {
|
||||||
font-size: calc(2.5mm + 1vw);
|
font-size: calc(2.5mm + 1vw);
|
||||||
margin: auto;
|
margin: auto;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em; }
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 640px) {
|
@media screen and (min-width: 640px) {
|
||||||
.text-wrapper.size-640 {
|
.text-wrapper.size-640 {
|
||||||
max-width: 640px;
|
max-width: 640px;
|
||||||
font-size: calc(2.5mm + 6.4px);
|
font-size: calc(2.5mm + 6.4px); } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 800px) {
|
@media screen and (min-width: 800px) {
|
||||||
.text-wrapper.size-800 {
|
.text-wrapper.size-800 {
|
||||||
font-size: calc(2.5mm + 8.0px);
|
font-size: calc(2.5mm + 8.0px);
|
||||||
max-width: 800px;
|
max-width: 800px; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 920px) {
|
@media screen and (min-width: 920px) {
|
||||||
.text-wrapper.size-920 {
|
.text-wrapper.size-920 {
|
||||||
font-size: calc(2.5mm + 9.2px);
|
font-size: calc(2.5mm + 9.2px);
|
||||||
max-width: 800px;
|
max-width: 800px; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 1200px) {
|
@media screen and (min-width: 1200px) {
|
||||||
.text-wrapper.size-1200 {
|
.text-wrapper.size-1200 {
|
||||||
font-size: calc(2.5mm + 12px);
|
font-size: calc(2.5mm + 12px);
|
||||||
max-width: 800px;
|
max-width: 800px; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ TITLES ------------------- */
|
/* ------------------ TITLES ------------------- */
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, h7 {
|
h1, h2, h3, h4, h5, h6, h7 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0px;
|
padding: 0;
|
||||||
margin:0px;
|
margin: 0;
|
||||||
font-weight:400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.2em;
|
padding: 0;
|
||||||
margin-bottom:1em;
|
margin-bottom: 1em;
|
||||||
font-weight:600;
|
font-weight: 600; }
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding: 0;
|
||||||
font-weight:600;
|
font-weight: 600; }
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding: 0;
|
||||||
font-weight:600;
|
font-weight: 600; }
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding: 0;
|
||||||
font-weight:600;
|
font-weight: 600; }
|
||||||
}
|
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding: 0;
|
||||||
font-weight:400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
|
|
||||||
h6 {
|
h6 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding: 0em;
|
||||||
font-weight:400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ HR ------------------- */
|
/* ------------------ HR ------------------- */
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
border-left: 0px;
|
border-left: 0px;
|
||||||
border-right: 0px;
|
border-right: 0px;
|
||||||
border-bottom: 1px;
|
border-bottom: 1px;
|
||||||
border-color: rgba(1,1,1,0.15);
|
border-color: rgba(1, 1, 1, 0.15);
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
margin: 1.6em;
|
margin: 1.6em; }
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ QUOTE ------------------- */
|
/* ------------------ QUOTE ------------------- */
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
border-left: 0.15em;
|
border-left: 0.15em;
|
||||||
|
@ -200,20 +167,17 @@ blockquote {
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
|
max-width: 100%; }
|
||||||
max-width: 100%
|
|
||||||
}
|
|
||||||
|
|
||||||
.night-mode blockquote {
|
.night-mode blockquote {
|
||||||
border-color: rgba(255, 255, 255, 0.15)
|
border-color: rgba(255, 255, 255, 0.15); }
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
border-left: 0.15em;
|
border-left: 0.15em;
|
||||||
border-right: 0px;
|
border-right: 0px;
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
border-color: rgba(1,1,1,0.20);
|
border-color: rgba(1, 1, 1, 0.2);
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -222,38 +186,29 @@ pre {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
|
background-color: #EEE;
|
||||||
background-color:#EEE;
|
max-width: 100%;
|
||||||
max-width:100%;
|
overflow-x: scroll; }
|
||||||
overflow-x: scroll;
|
|
||||||
}
|
|
||||||
|
|
||||||
.night-mode pre {
|
.night-mode pre {
|
||||||
background-color:#222;
|
background-color: #222;
|
||||||
border-color:rgba(255,255,255,0.20);
|
border-color: rgba(255, 255, 255, 0.2); }
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ SPECIAL STYLING ------------------- */
|
/* ------------------ SPECIAL STYLING ------------------- */
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
border-radius: 0.2em;
|
border-radius: 0.2em;
|
||||||
padding:0;
|
padding: 0;
|
||||||
padding-left:0.2em;
|
padding-left: 0.2em;
|
||||||
padding-right:0.2em;
|
padding-right: 0.2em;
|
||||||
|
background-color: rgba(255, 255, 0, 0.33);
|
||||||
background-color:rgba(255,255,0,0.33);
|
color: inherit; }
|
||||||
color: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.night-mode mark {
|
.night-mode mark {
|
||||||
background-color:rgba(128,128,0,0.66);
|
background-color: rgba(128, 128, 0, 0.66); }
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------------ SPECIAL STYLING ------------------- */
|
/* ------------------ SPECIAL STYLING ------------------- */
|
||||||
|
|
||||||
.time {
|
.time {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block; }
|
||||||
}
|
|
||||||
|
|
|
@ -118,8 +118,8 @@ h1, h2, h3, h4, h5, h6, h7 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0px;
|
padding:0;
|
||||||
margin:0px;
|
margin:0;
|
||||||
font-weight:400;
|
font-weight:400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@ h1 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.2em;
|
padding:0;
|
||||||
margin-bottom:1em;
|
margin-bottom:1em;
|
||||||
font-weight:600;
|
font-weight:600;
|
||||||
}
|
}
|
||||||
|
@ -136,7 +136,7 @@ h2 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding:0;
|
||||||
font-weight:600;
|
font-weight:600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ h3 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding:0;
|
||||||
font-weight:600;
|
font-weight:600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,7 +152,7 @@ h4 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding:0;
|
||||||
font-weight:600;
|
font-weight:600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,7 +160,7 @@ h5 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding:0;
|
||||||
font-weight:400;
|
font-weight:400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ h6 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
padding:0.1em;
|
padding:0em;
|
||||||
font-weight:400;
|
font-weight:400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue