Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions base/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<meta charset="UTF-8">
<title>Newspaper</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="../styles.css">
<link href="https://fonts.googleapis.com/css?family=Space+Mono:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Racing+Sans+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Six+Caps" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Farsan" rel="stylesheet">
</head>
<body>
<header class="header clear-fix">
Expand Down
Binary file added fonts/CloisterBlack.ttf
Binary file not shown.
134 changes: 134 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
@font-face {
font-family: 'Cloister Black';
src: url('./fonts/CloisterBlack.ttf');
}

.header__title {
font-family: 'Cloister Black', fantasy;
font-size: 5.31rem;
text-align: center;
}

.header__info {
text-align: center;
}

.header__weather-title {
font-family: 'Space Mono', monospace;
font-weight: bold;
font-size: 1.17em;
text-align: center;
}

.header__weather-text {
text-align: justify;
font-size: 0.8em;
line-height: 1.1;
}

.sub-header__copyright {
font-size: 0.6em;
}

.sub-header__number, .sub-header__create-date,
.sub-header__price {
font-weight: bold;
}

.article__title {
font-family: 'Six Caps', sans-serif;
font-size: 3.2em;
font-weight: bold;
}

.article__subtitle {
font-family: 'Times New Roman', serif;
text-align: center;
font-size: 1.17em;
font-weight: bold;
}

.article__author {
font-weight: bold;
font-size: 0.8em;
text-align: center;
}

.article__content p {
text-indent: 2ch;
font-size: 0.8em;
text-align: justify;
margin: 0;
}

.main-photo__caption {
text-align: right;
text-transform: uppercase;
font-size: 0.7em;
}

.main-photo__title {
font-weight: bold;
font-size: 1.17em;
}

.main-photo__desc {
font-size: 0.8em;
}

.article__title_font_racing {
font-family: 'Racing Sans One', cursive;
font-size: 2em;
font-weight: bold;
}

.article__continue {
font-size: 0.8em;
font-style: italic;
text-align: center;
}

.multicolumn .article__content {
column-count: 2;
column-gap: 15px;

-webkit-column-count: 2;
-webkit-column-gap: 15px;

-moz-column-count: 2;
-moz-column-gap: 15px;
}

.multicolumn .article__author {
column-span: all;
-webkit-column-span: all;
-moz-column-span: all;
}

.multicolumn .article__content span {
column-span: all;
-webkit-column-span: all;
-moz-column-span: all;
}

.article__add-text {
text-align: justify;
text-indent: 2ch;
font-size: 0.8em;
font-style: italic;
}

.article__title_font_farsan {
font-family: 'Farsan', cursive;
font-size: 2.3em;
font-weight: bold;
}

.article__image-caption {
font-size: 0.8rem;
text-decoration: underline;
}

.article__subtitle ~ .article__subtitle {
font-size: 1em;
}