mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
the font was driving me crazy
This commit is contained in:
parent
3fd7287135
commit
ef5d29a15c
6 changed files with 21 additions and 11 deletions
|
@ -12,7 +12,7 @@
|
||||||
'LBRY' ?>
|
'LBRY' ?>
|
||||||
<title><?php echo $title ?></title>
|
<title><?php echo $title ?></title>
|
||||||
|
|
||||||
<link href='//fonts.googleapis.com/css?family=Raleway:600,300' rel='stylesheet' type='text/css'>
|
<link href='https://fonts.googleapis.com/css?family=Lato:300,300italic,400|Raleway:300,300italic' rel='stylesheet' type='text/css'>
|
||||||
<link href="/css/all.css" rel="stylesheet" type="text/css" media="screen,print" />
|
<link href="/css/all.css" rel="stylesheet" type="text/css" media="screen,print" />
|
||||||
<link rel="apple-touch-icon" sizes="60x60" href="/img/fav/apple-touch-icon-60x60.png">
|
<link rel="apple-touch-icon" sizes="60x60" href="/img/fav/apple-touch-icon-60x60.png">
|
||||||
<link rel="apple-touch-icon" sizes="114x114" href="/img/fav/apple-touch-icon-114x114.png">
|
<link rel="apple-touch-icon" sizes="114x114" href="/img/fav/apple-touch-icon-114x114.png">
|
||||||
|
|
|
@ -10,7 +10,8 @@ html
|
||||||
}
|
}
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
font-family: 'Raleway', sans-serif;
|
font-family: $bodyFont;
|
||||||
|
font-weight: 300;
|
||||||
line-height: 1.3333;
|
line-height: 1.3333;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -34,6 +35,11 @@ iframe, img { max-width: 100%; }
|
||||||
iframe { margin: 0 auto; display: block; }
|
iframe { margin: 0 auto; display: block; }
|
||||||
code { font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace, serif; }
|
code { font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace, serif; }
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{
|
||||||
|
font-family: $headerFont;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
h1, h2, h3
|
h1, h2, h3
|
||||||
{
|
{
|
||||||
margin-bottom: $spacing-vertical;
|
margin-bottom: $spacing-vertical;
|
||||||
|
@ -109,6 +115,7 @@ a:hover img
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
.btn-primary
|
.btn-primary
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,6 +14,8 @@ $mobile-width-threshold: 801px;
|
||||||
$max-content-width: 1000px;
|
$max-content-width: 1000px;
|
||||||
$max-text-width: 660px;
|
$max-text-width: 660px;
|
||||||
|
|
||||||
|
$headerFont: 'Raleway', sans-serif;
|
||||||
|
$bodyFont: 'Lato', sans-serif;
|
||||||
|
|
||||||
@mixin clearfix()
|
@mixin clearfix()
|
||||||
{
|
{
|
||||||
|
|
|
@ -51,7 +51,7 @@ $color-nav-border: #ddd;
|
||||||
a
|
a
|
||||||
{
|
{
|
||||||
&:hover { text-decoration: underline; }
|
&:hover { text-decoration: underline; }
|
||||||
&.nav-active { font-weight: bold; }
|
// &.nav-active { font-weight: bold; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
padding-bottom: $spacing-vertical;
|
padding-bottom: $spacing-vertical;
|
||||||
blockquote
|
blockquote
|
||||||
{
|
{
|
||||||
|
font-family: $headerFont;
|
||||||
border-left: 10px solid rgba(180, 180, 180, 0.3);
|
border-left: 10px solid rgba(180, 180, 180, 0.3);
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
}
|
}
|
||||||
.sale-call-prep, .sale-call-verb
|
.sale-call-prep, .sale-call-verb
|
||||||
{
|
{
|
||||||
font-size: 0.85em;
|
// font-size: 0.85em;
|
||||||
}
|
}
|
||||||
.sale-ctas
|
.sale-ctas
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue