Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some CSS improvements #1

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
050b5d6
Merge branch 'pull-request/8'
ramsey Jul 18, 2017
5254f27
New modern and responsive webdesign (like PHP.net website)
arnolem Jul 18, 2017
3c20617
New logo "PHP news" like "php doc", "php museum" or "php svn" websites
arnolem Jul 21, 2017
fd35fe2
add the php favicon
arnolem Jul 21, 2017
21c430f
Add the php.net navigation menu on the top
arnolem Jul 21, 2017
4d3325c
Rename "PHP news" to "PHP lists" on the logo
arnolem Jul 21, 2017
e4b1eed
just add an hover style on menu items
arnolem Jul 21, 2017
c4d44a6
Add a search input to header
arnolem Jul 21, 2017
02e7df9
Add a breadcrumbs bar on the homepage
arnolem Jul 21, 2017
124ffb6
Correct a misplaced tag
arnolem Jul 21, 2017
739060b
Change links colors and dissociate not-readed links
arnolem Jul 21, 2017
329a6bc
new homepage (without sidebar)
arnolem Jul 21, 2017
f0ede2d
New footer like php.net website
arnolem Jul 21, 2017
a45a566
Change the default website title to "PHP Mailing Lists (PHP News)"
arnolem Jul 21, 2017
95195cb
Add the mailing list name into H1 tag, change the meta title and add …
arnolem Jul 21, 2017
6035f03
Add a default charset to all format helpers
arnolem Jul 21, 2017
17972f4
Add a breadcrumps on article page
arnolem Jul 21, 2017
a72456f
Just define a dynamic copyright date
arnolem Jul 21, 2017
079606e
Add a simple responsive menu
arnolem Jul 22, 2017
818cfd1
Some adaptation for W3C validation
arnolem Jul 22, 2017
11dec8b
Corrections completed for W3C validation
arnolem Jul 22, 2017
533374c
Define "Fira Mono" as message font (<pre> tag)
arnolem Jul 22, 2017
f9d062f
fix a colspan only if article has no group or no refs
arnolem Jul 22, 2017
eb584dc
Merge branch 'pull-request/9'
ramsey Jul 22, 2017
4251bf4
Move favicon.ico to the web root
ramsey Jul 22, 2017
b980e41
Fix error message not being displayed with the new layout
machour Jul 22, 2017
d66b483
Make tables responsive and avoid breaking words in them
machour Jul 22, 2017
69569c6
Merge branch 'pull-request/11'
ramsey Jul 22, 2017
9c7d103
Remove credits from footer
ramsey Jul 22, 2017
c293ee1
Load the PHP SVG logo from official server to bypass the content-type…
arnolem Jul 23, 2017
b76d886
Merge pull request #1 from wixiweb/fix-logo-svg
arnolem Jul 23, 2017
c869a4d
delete unused style
arnolem Jul 23, 2017
0bee3e2
delete unused style
arnolem Jul 23, 2017
9bfc631
refomat style
arnolem Jul 23, 2017
41ccdfe
add a small margin on the right of the search box on small screen
arnolem Jul 23, 2017
54469ce
delete unused style
arnolem Jul 23, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions article.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@
}

head("{$group}: " . format_title($mail['headers']['subject'], 'utf-8'));
echo '<nav class="secondary-nav">';
echo ' <ul class="breadcrumbs">';
echo ' <li class="breadcrumbs-item"><a class="breadcrumbs-item-link" href="/">PHP Mailing Lists</a></li>';
echo ' <li class="breadcrumbs-item"><a class="breadcrumbs-item-link" href="/'.htmlspecialchars($group, ENT_QUOTES, "UTF-8").'">'.htmlspecialchars($group, ENT_QUOTES, "UTF-8").'</a></li>';
echo ' <li class="breadcrumbs-item"><a class="breadcrumbs-item-link" href="/'.htmlspecialchars($group, ENT_QUOTES, "UTF-8").'/'.$article.'">'.format_title($mail['headers']['subject']).'</a></li>';
echo ' </ul>';
echo '</nav>';
echo '<section class="content">';
start_article($mail, $refsResolved);

$lines = preg_split("@(?<=\r\n|\n)@", $mail['text']);
Expand Down Expand Up @@ -135,8 +143,11 @@
echo " </blockquote>\n";

function start_article($mail, $refsResolved) {

echo '<h1>'.format_subject($mail['headers']['subject'], 'utf-8')."</h1>\n";

echo " <blockquote>\n";
echo ' <table border="0" cellpadding="2" cellspacing="2" width="100%">' . "\n";
echo ' <table class="standard">' . "\n";
# from
echo ' <tr class="vcard">' . "\n";
echo ' <td class="headerlabel">From:</td>' . "\n";
Expand All @@ -154,7 +165,7 @@ function start_article($mail, $refsResolved) {
# references
if (!empty($refsResolved)) {
echo ' <td class="headerlabel">References:</td>' . "\n";
echo ' <td class="headervalue">';
echo ' <td class="headervalue" '.(empty($mail['headers']['newsgroups']) ? 'colspan="3"' : null).'>';
foreach ($refsResolved as $k => $ref) {
echo "<a href=\"/". urlencode($ref['group']) . '/' . urlencode($ref['articleId']) ."\">".($k + 1)."</a>&nbsp;";
}
Expand All @@ -163,7 +174,7 @@ function start_article($mail, $refsResolved) {
# groups
if (!empty($mail['headers']['newsgroups'])) {
echo ' <td class="headerlabel">Groups:</td>' . "\n";
echo ' <td class="headervalue">';
echo ' <td class="headervalue" '.(empty($refsResolved) ? 'colspan="3"' : null).'>';
$r = explode(",", rtrim($mail['headers']['newsgroups']));
while (list($k,$v) = each($r)) {
echo "<a href=\"/".urlencode($v)."\">".htmlspecialchars($v)."</a>&nbsp;";
Expand All @@ -183,24 +194,25 @@ function navbar($group, $current) {

$group = htmlspecialchars($group, ENT_QUOTES, "UTF-8");

echo ' <table border="0" cellpadding="2" cellspacing="2" width="100%">' . "\n";
echo ' <table class="standard">' . "\n";
echo ' <tr>' . "\n";
echo ' <th class="nav">';

if ($current > 1) {
echo ' <a href="/' , $group , '/' , ($current-1) , '"><b>&laquo; previous</b></a>';
echo ' <a href="/' , $group , '/' , ($current-1) , '"><b>&laquo; <span>previous</span></b></a>';
} else {
echo '&nbsp;';
}

echo ' </th>' . "\n";
echo ' <th align="center">' . "$group (#$current)</th>\n";
echo ' <th align="right" class="nav">';
echo ' <a href="/' , $group , '/' , ($current+1) , '"><b>next &raquo;</b></a>';
echo ' <th class="align-center">' . "$group (#$current)</th>\n";
echo ' <th class="nav align-right">';
echo ' <a href="/' , $group , '/' , ($current+1) , '"><b><span>next</span> &raquo;</b></a>';
echo ' </th>' . "\n";
echo ' </tr>' . "\n";
echo ' </table>' . "\n";
}

navbar($group, $article);
echo '</section>';
foot();
66 changes: 42 additions & 24 deletions common.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,43 +12,61 @@

function error($str) {
head("PHP news : error");
echo "<blockquote><strong>Error:</strong> ".to_utf8($str)."</blockquote>\n";
echo "<section class=\"content\"><blockquote><strong>Error:</strong> ".to_utf8($str)."</blockquote></section>\n";
foot();
die();
}

function head($title="PHP news") {
function head($title="PHP Mailing Lists (PHP News)") {
header("Content-type: text/html; charset=utf-8");
echo '<?xml version="1.0"?>' . "\n";

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($title); ?></title>
<link rel="stylesheet" href="/fonts/Fira/fira.css" type="text/css" />
<link rel="stylesheet" href="/style.css" type="text/css" />
<link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="header">
<tr>
<td>
<a href="/index.php"><img src="/i/l.gif" width="120" height="67" alt="PHP" /></a>
</td>
<td align="right" valign="bottom">
PHP.net <a href="news://<?php echo $_SERVER['HTTP_HOST']; ?>/" class="top">news server</a> web interface
</td>
</tr>
</table>
<header class="header">
<nav class="header-inner">
<a href="/" class="header-brand"><img src="http://php.net/images/logos/php-logo.svg" class="header-brand-img" alt="PHP" height="24" width="48"><span class="header-brand-text">lists</span></a><ul class="header-menu">
<li class="header-menu-item"><a class="header-menu-item-link" href="http://php.net/downloads.php">Downloads</a></li>
<li class="header-menu-item"><a class="header-menu-item-link" href="http://php.net/docs.php">Documentation</a></li>
<li class="header-menu-item"><a class="header-menu-item-link" href="http://php.net/get-involved.php">Get Involved</a></li>
<li class="header-menu-item mod-active"><a class="header-menu-item-link" href="http://php.net/support.php">Help</a></li>
</ul>
<form class="search-form" action="http://php.net/search.php">
<input class="search-input" value="" name="pattern" placeholder="Search">
</form>
<div class="menu-icon" onclick="document.querySelector('.menu-mobile').classList.toggle('hide')">☰ MENU</div>
<ul class="menu-mobile hide">
<li class="menu-mobile-item"><a class="menu-mobile-item-link" href="http://php.net/downloads.php">Downloads</a></li>
<li class="menu-mobile-item"><a class="menu-mobile-item-link" href="http://php.net/docs.php">Documentation</a></li>
<li class="menu-mobile-item"><a class="menu-mobile-item-link" href="http://php.net/get-involved.php">Get Involved</a></li>
<li class="menu-mobile-item mod-active"><a class="menu-mobile-item-link" href="http://php.net/support.php">Help</a></li>
</ul>
</nav>
</header>
<?php
}

function foot() {?>
<hr />
<div class="small">
Written by Jim Winstead. no rights reserved. (<a href="https://git.php.net/?p=web/news.git">source code</a>)
</div>

<footer class="footer">
<ul class="footer-nav">
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/copyright.php">Copyright © 2001-<?php echo date('Y'); ?> The PHP Group</a></li>
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/my.php">My PHP.net</a></li>
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/contact.php">Contact</a></li>
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/sites.php">Other PHP.net sites</a></li>
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/mirrors.php">Mirror sites</a></li>
<li class="footer-nav-item"><a class="footer-nav-item-link" href="http://php.net/privacy.php">Privacy policy</a></li>
</ul>
</footer>
</body>
</html>
<?php
Expand Down Expand Up @@ -99,7 +117,7 @@ function spam_protect($txt) {


# this turns some common forms of email addresses into mailto: links
function format_author($a, $charset) {
function format_author($a, $charset = 'iso-8859-1') {
$a = recode_header($a, $charset);
if (preg_match("/^\s*(.+)\s+\\(\"?(.+?)\"?\\)\s*$/",$a,$ar)) {
return "<a href=\"mailto:".htmlspecialchars(urlencode(spam_protect($ar[1])), ENT_QUOTES, "UTF-8")."\" class=\"email fn n\">".str_replace(" ", "&nbsp;", htmlspecialchars($ar[2], ENT_QUOTES, "UTF-8"))."</a>";
Expand All @@ -114,7 +132,7 @@ function format_author($a, $charset) {
return str_replace(" ", "&nbsp;", htmlspecialchars($a, ENT_QUOTES, "UTF-8"));
}

function format_subject($s, $charset) {
function format_subject($s, $charset = 'iso-8859-1') {
global $article;
$s = recode_header($s, $charset);

Expand All @@ -134,7 +152,7 @@ function format_subject($s, $charset) {
}


function format_title($s, $charset) {
function format_title($s, $charset = 'iso-8859-1') {
global $article;
$s = recode_header($s, $charset);
$s = preg_replace("/^(Re: *)?\[(PHP|PEAR)(-.*)?\] /i", "\\1", $s);
Expand Down
Binary file added favicon.ico
Binary file not shown.
99 changes: 99 additions & 0 deletions fonts/Fira/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
with Reserved Font Name Fira Sans.

Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
with Reserved Font Name Fira Mono.

Copyright (c) 2014, Telefonica S.A.

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL


-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.

The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).

"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.

"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.

5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are
not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Binary file added fonts/Fira/eot/FiraMono-Bold.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraMono-Regular.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Bold.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-BoldItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Book.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-BookItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Eight.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-EightItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Four.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-FourItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Hair.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-HairItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Heavy.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-HeavyItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Light.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-LightItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Medium.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-MediumItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Regular.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-RegularItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-SemiBold.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-SemiBoldItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Thin.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-ThinItalic.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-Two.eot
Binary file not shown.
Binary file added fonts/Fira/eot/FiraSans-TwoItalic.eot
Binary file not shown.
66 changes: 66 additions & 0 deletions fonts/Fira/fira.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
@font-face{
font-family: 'Fira Sans';
src: url('/fonts/Fira/eot/FiraSans-Book.eot');
src: local('/fonts/Fira/Fira Sans Book'),
url('/fonts/Fira/eot/FiraSans-Book.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraSans-Book.woff') format('woff'),
url('/fonts/Fira/ttf/FiraSans-Book.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

@font-face{
font-family: 'Fira Sans';
src: url('/fonts/Fira/eot/FiraSans-BookItalic.eot');
src: local('/fonts/Fira/Fira Sans Book Italic'),
url('/fonts/Fira/eot/FiraSans-BookItalic.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraSans-BookItalic.woff') format('woff'),
url('/fonts/Fira/ttf/FiraSans-BookItalic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
}

@font-face{
font-family: 'Fira Sans';
src: url('/fonts/Fira/eot/FiraSans-Medium.eot');
src: local('/fonts/Fira/Fira Sans Medium'),
url('/fonts/Fira/eot/FiraSans-Medium.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraSans-Medium.woff') format('woff'),
url('/fonts/Fira/ttf/FiraSans-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}

@font-face{
font-family: 'Fira Sans';
src: url('/fonts/Fira/eot/FiraSans-MediumItalic.eot');
src: local('/fonts/Fira/Fira Sans Medium Italic'),
url('/fonts/Fira/eot/FiraSans-MediumItalic.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraSans-MediumItalic.woff') format('woff'),
url('/fonts/Fira/ttf/FiraSans-MediumItalic.ttf') format('truetype');
font-weight: 500;
font-style: italic;
}

@font-face{
font-family: 'Fira Mono';
src: url('/fonts/Fira/eot/FiraMono-Regular.eot');
src: local('/fonts/Fira/Fira Mono'),
url('/fonts/Fira/eot/FiraMono-Regular.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraMono-Regular.woff') format('woff'),
url('/fonts/Fira/ttf/FiraMono-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

@font-face{
font-family: 'Fira Mono';
src: url('/fonts/Fira/eot/FiraMono-Bold.eot');
src: local('/fonts/Fira/Fira Mono Bold'),
url('/fonts/Fira/eot/FiraMono-Bold.eot') format('embedded-opentype'),
url('/fonts/Fira/woff/FiraMono-Bold.woff') format('woff'),
url('/fonts/Fira/ttf/FiraMono-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}

Binary file added fonts/Fira/otf/FiraMono-Bold.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraMono-Regular.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Bold.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-BoldItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Book.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-BookItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Eight.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-EightItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Four.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-FourItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Hair.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-HairItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Heavy.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-HeavyItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Light.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-LightItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Medium.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-MediumItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Regular.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-RegularItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-SemiBold.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-SemiBoldItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Thin.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-ThinItalic.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-Two.otf
Binary file not shown.
Binary file added fonts/Fira/otf/FiraSans-TwoItalic.otf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Bold.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-BoldItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Book.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-BookItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Eight.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-EightItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Four.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-FourItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Hair.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-HairItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Heavy.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-HeavyItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Light.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-LightItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Medium.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-MediumItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Regular.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-RegularItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-SemiBold.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-SemiBoldItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Thin.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-ThinItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-Two.ttf
Binary file not shown.
Binary file added fonts/Fira/ttf/FiraSans-TwoItalic.ttf
Binary file not shown.
Binary file added fonts/Fira/woff/FiraMono-Bold.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraMono-Regular.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Bold.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-BoldItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Book.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-BookItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Eight.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-EightItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Four.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-FourItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Hair.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-HairItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Heavy.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-HeavyItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Light.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-LightItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Medium.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-MediumItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Regular.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-RegularItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-SemiBold.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-SemiBoldItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Thin.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-ThinItalic.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-Two.woff
Binary file not shown.
Binary file added fonts/Fira/woff/FiraSans-TwoItalic.woff
Binary file not shown.
Loading