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
|
@ -1,18 +1,18 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head prefix="og: http://ogp.me/ns#">
|
<head prefix="og: http://ogp.me/ns#">
|
||||||
|
|
||||||
<meta name="google-site-verification" content="QEyIHPbSKR2Z9ZNkfVHGdGv5EE7tTM7FE0Wt8tmcH50" />
|
<meta name="google-site-verification" content="QEyIHPbSKR2Z9ZNkfVHGdGv5EE7tTM7FE0Wt8tmcH50" />
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width">
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
<?php $title = Response::getMetaTitle() ?: Response::guessMetaTitle($content) ?>
|
<?php $title = Response::getMetaTitle() ?: Response::guessMetaTitle($content) ?>
|
||||||
<?php $title = $title ?
|
<?php $title = $title ?
|
||||||
$title . (strpos($title, 'LBRY') === false ? ' - LBRY' : '') :
|
$title . (strpos($title, 'LBRY') === false ? ' - LBRY' : '') :
|
||||||
'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">
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
<meta name="description" content="<?php echo Response::getMetaDescription() ?>">
|
<meta name="description" content="<?php echo Response::getMetaDescription() ?>">
|
||||||
<meta name="msapplication-TileColor" content="#155B4A">
|
<meta name="msapplication-TileColor" content="#155B4A">
|
||||||
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
||||||
<meta name="theme-color" content="#155B4A">
|
<meta name="theme-color" content="#155B4A">
|
||||||
<!-- Twitter Card data -->
|
<!-- Twitter Card data -->
|
||||||
<meta name="twitter:site" content="@lbryio">
|
<meta name="twitter:site" content="@lbryio">
|
||||||
<meta name="twitter:creator" content="@lbryio">
|
<meta name="twitter:creator" content="@lbryio">
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
<meta property="og:image" content="<?php echo Response::getMetaImage() ?>" />
|
<meta property="og:image" content="<?php echo Response::getMetaImage() ?>" />
|
||||||
<meta property="og:description" content="<?php echo Response::getMetaDescription() ?>"/>
|
<meta property="og:description" content="<?php echo Response::getMetaDescription() ?>"/>
|
||||||
<meta property="og:site_name" content="LBRY" />
|
<meta property="og:site_name" content="LBRY" />
|
||||||
|
|
||||||
<base target="_parent" />
|
<base target="_parent" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
.sale-cta
|
.sale-cta
|
||||||
{
|
{
|
||||||
font-size: 2.0em;
|
font-size: 2.0em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.sale-call-verb
|
.sale-call-verb
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue