Compare commits

...

11 Commits

Author SHA1 Message Date
sergiotarxz 099d32850a
fix: Fixing flex wrap for <pre> 2020-10-23 04:14:58 +02:00
sergiotarxz 9a644b52e7
fix: Removed flex-wrap from .row. 2020-10-23 01:58:18 +02:00
sergiotarxz 8bc1cec431
feat: Making <pre> more pretty. 2020-10-23 01:29:23 +02:00
sergiotarxz fdf2941296 fix: Ensuring <pre> block are printed monospace. 2020-10-23 01:09:40 +02:00
sergiotarxz 4283de5d62 fix: Adjusting only the title. 2020-10-22 19:16:14 +02:00
sergiotarxz 4ea7194266 fix: Adjusting well the title again. 2020-10-22 19:13:01 +02:00
sergiotarxz 3d0af80de5 fix: Changing the version in css to avoid caching. 2020-10-22 19:06:47 +02:00
sergiotarxz cca3fb9901 fix: Allowing site title with bigger length words. 2020-10-22 19:02:07 +02:00
sergiotarxz 63219020f9 Fixing header of article h1 smaller than in article h1. 2020-10-22 18:44:02 +02:00
sergiotarxz 271bb10cc7 feat: Further simplification of the css. 2020-10-22 18:36:17 +02:00
sergiotarxz 0293903605 fix: Making license scope clearer. 2020-10-22 14:42:24 +02:00
3 changed files with 26 additions and 35 deletions

View File

@ -5,5 +5,5 @@ Theme for microblogging or microsites, supports cover images, static pages, RSS
- Bludit latest version only ensured.
## Authors
- @dignajar:github.com (Original code licensed under MIT.)
- @dignajar:github.com and other autors who merged their code into the Micro repository (Code licensed under MIT.)
- @sergiotarxz:gitea.sergiotarxz.freemyip.com (Changes made by sergiotarxz not merged into the original repository licensed under GPLv3.)

View File

@ -1,32 +1,24 @@
@charset "UTF-8";
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
}
* {
font-family: 'Open Sans', sans-serif;
font-family: 'Open Sans', arial, sans-serif;
}
pre {
font-family: 'Open Sans', monospace;
background: #eee;
padding: 10px;
border-radius: 4px;
box-shadow: 3px 3px 3px 3px #555;
overflow-x: scroll;
}
body {
color: #444;
}
h1.site-title {
font-size-adjust: 0.3;
}
*, ::after, ::before {
box-sizing: border-box;
}
body {
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
}
body {
font-family: arial, sans-serif;
font-weight: 300;
font-size: 15px;
line-height: 26px;
color: #868f90;
}
ul.static-pages {
font-size: 0.9em;
list-style: none;
@ -42,20 +34,18 @@ ul.static-pages a:hover, a:hover {
ul li {
padding-bottom: 6px;
}
h1.site-title {
font-size: 1.2em;
}
h1, h2 {
font-size: 20px;
}
a {
color: black;
text-decoration: none;
}
.row {
display: flex;
header h2 {
font-size: 33px;
}
article h1 {
font-size: 30px;
}
.row {
display: flex;
flex-wrap: wrap;
}
.text-center {
@ -71,6 +61,9 @@ article.page footer {
text-align: right;
font-size: 0.8em;
}
article {
display: grid;
}
#fh5co-content {
display: flex;
justify-content: center;
@ -83,7 +76,6 @@ article.page footer {
}
h1, h2, h3, h4, h5, h6 {
color: #000;
font-family: "Roboto Slab", arial, sans-serif;
margin-top: 0;
margin-bottom: 20px;
font-weight: 300;

View File

@ -1,6 +1,5 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<?php echo Theme::css('fonts/opensans/stylesheet.css'); ?>
<meta name="author" content="Bludit CMS">
@ -13,7 +12,7 @@
<!-- Include Favicon -->
<?php echo Theme::favicon('img/favicon.png?v=0'); ?>
<?php echo Theme::css('css/style.css?v=0'); ?>
<?php echo Theme::css('css/style.css?v=4'); ?>
<!-- Load Bludit Plugins: Site head -->
<?php Theme::plugins('siteHead'); ?>