Compare commits

...

8 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
2 changed files with 15 additions and 4 deletions

View File

@ -2,9 +2,20 @@
* {
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;
}
@ -35,8 +46,6 @@ article h1 {
}
.row {
display: flex;
}
.row {
flex-wrap: wrap;
}
.text-center {
@ -52,6 +61,9 @@ article.page footer {
text-align: right;
font-size: 0.8em;
}
article {
display: grid;
}
#fh5co-content {
display: flex;
justify-content: center;

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'); ?>