forked from mirror/_s
Remove font-size mixin (#1413)
This commit is contained in:
parent
a4dae93801
commit
4909e965c4
|
@ -7,9 +7,7 @@ input[type="submit"] {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: $color__background-button;
|
background: $color__background-button;
|
||||||
color: rgba(0, 0, 0, 0.8);
|
color: rgba(0, 0, 0, 0.8);
|
||||||
|
font-size: 0.75rem;
|
||||||
@include font-size(0.75);
|
|
||||||
|
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 0.6em 1em 0.4em;
|
padding: 0.6em 1em 0.4em;
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
// Rem output with px fallback
|
|
||||||
@mixin font-size($sizeValue: 1) {
|
|
||||||
font-size: ($sizeValue * 16) * 1px;
|
|
||||||
font-size: $sizeValue * 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Center block
|
// Center block
|
||||||
@mixin center-block {
|
@mixin center-block {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
@ -19,9 +19,7 @@
|
||||||
clip-path: none;
|
clip-path: none;
|
||||||
color: $color__text-screen;
|
color: $color__text-screen;
|
||||||
display: block;
|
display: block;
|
||||||
|
font-size: 0.875rem;
|
||||||
@include font-size(0.875);
|
|
||||||
|
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
height: auto;
|
height: auto;
|
||||||
left: 5px;
|
left: 5px;
|
||||||
|
|
|
@ -20,8 +20,7 @@ address {
|
||||||
pre {
|
pre {
|
||||||
background: $color__background-pre;
|
background: $color__background-pre;
|
||||||
font-family: $font__pre;
|
font-family: $font__pre;
|
||||||
|
font-size: 0.9375rem;
|
||||||
@include font-size(0.9375);
|
|
||||||
line-height: $font__line-height-pre;
|
line-height: $font__line-height-pre;
|
||||||
margin-bottom: 1.6em;
|
margin-bottom: 1.6em;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -34,8 +33,7 @@ kbd,
|
||||||
tt,
|
tt,
|
||||||
var {
|
var {
|
||||||
font-family: $font__code;
|
font-family: $font__code;
|
||||||
|
font-size: 0.9375rem;
|
||||||
@include font-size(0.9375);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr,
|
abbr,
|
||||||
|
|
|
@ -6,8 +6,7 @@ optgroup,
|
||||||
textarea {
|
textarea {
|
||||||
color: $color__text-main;
|
color: $color__text-main;
|
||||||
font-family: $font__main;
|
font-family: $font__main;
|
||||||
|
font-size: 1rem;
|
||||||
@include font-size(1);
|
|
||||||
line-height: $font__line-height-body;
|
line-height: $font__line-height-body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -368,7 +368,6 @@ optgroup,
|
||||||
textarea {
|
textarea {
|
||||||
color: #404040;
|
color: #404040;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 16px;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
@ -404,7 +403,6 @@ address {
|
||||||
pre {
|
pre {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
font-family: "Courier 10 Pitch", courier, monospace;
|
font-family: "Courier 10 Pitch", courier, monospace;
|
||||||
font-size: 15px;
|
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
margin-bottom: 1.6em;
|
margin-bottom: 1.6em;
|
||||||
|
@ -418,7 +416,6 @@ kbd,
|
||||||
tt,
|
tt,
|
||||||
var {
|
var {
|
||||||
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||||
font-size: 15px;
|
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -518,7 +515,6 @@ input[type="submit"] {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: #e6e6e6;
|
background: #e6e6e6;
|
||||||
color: rgba(0, 0, 0, 0.8);
|
color: rgba(0, 0, 0, 0.8);
|
||||||
font-size: 12px;
|
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 0.6em 1em 0.4em;
|
padding: 0.6em 1em 0.4em;
|
||||||
|
@ -744,7 +740,6 @@ a:active {
|
||||||
clip-path: none;
|
clip-path: none;
|
||||||
color: #21759b;
|
color: #21759b;
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 14px;
|
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
@ -368,7 +368,6 @@ optgroup,
|
||||||
textarea {
|
textarea {
|
||||||
color: #404040;
|
color: #404040;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 16px;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
@ -404,7 +403,6 @@ address {
|
||||||
pre {
|
pre {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
font-family: "Courier 10 Pitch", courier, monospace;
|
font-family: "Courier 10 Pitch", courier, monospace;
|
||||||
font-size: 15px;
|
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
margin-bottom: 1.6em;
|
margin-bottom: 1.6em;
|
||||||
|
@ -418,7 +416,6 @@ kbd,
|
||||||
tt,
|
tt,
|
||||||
var {
|
var {
|
||||||
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||||
font-size: 15px;
|
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -518,7 +515,6 @@ input[type="submit"] {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: #e6e6e6;
|
background: #e6e6e6;
|
||||||
color: rgba(0, 0, 0, 0.8);
|
color: rgba(0, 0, 0, 0.8);
|
||||||
font-size: 12px;
|
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 0.6em 1em 0.4em;
|
padding: 0.6em 1em 0.4em;
|
||||||
|
@ -744,7 +740,6 @@ a:active {
|
||||||
clip-path: none;
|
clip-path: none;
|
||||||
color: #21759b;
|
color: #21759b;
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 14px;
|
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
Reference in New Issue