Compare commits

..

No commits in common. "master" and "feature/issue_#14/special_rules_bigger_screens" have entirely different histories.

4 changed files with 36 additions and 56 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 and other autors who merged their code into the Micro repository (Code licensed under MIT.)
- @dignajar:github.com (Original 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,24 +1,32 @@
@charset "UTF-8";
* {
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;
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;
}
h1.site-title {
font-size-adjust: 0.3;
* {
font-family: 'Open Sans', sans-serif;
}
*, ::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;
@ -29,23 +37,25 @@ ul.static-pages a {
color: #777;
}
ul.static-pages a:hover, a:hover {
color: #e32929;
color: orange;
}
ul li {
padding-bottom: 6px;
}
h1.site-title {
font-size: 1.2em;
}
h1, h2 {
font-size: 20px;
}
a {
color: black;
text-decoration: none;
}
header h2 {
font-size: 33px;
}
article h1 {
font-size: 30px;
}
.row {
display: flex;
}
.row {
flex-wrap: wrap;
}
.text-center {
@ -61,9 +71,6 @@ article.page footer {
text-align: right;
font-size: 0.8em;
}
article {
display: grid;
}
#fh5co-content {
display: flex;
justify-content: center;
@ -76,6 +83,7 @@ article {
}
h1, h2, h3, h4, h5, h6 {
color: #000;
font-family: "Roboto Slab", arial, sans-serif;
margin-top: 0;
margin-bottom: 20px;
font-weight: 300;
@ -94,35 +102,6 @@ img {
vertical-align: middle;
border: 0;
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
width: 100%;
}
.pagination > li {
list-style-type: none;
}
.pagination > li > a, .pagination > li > span {
position: relative;
float: left;
padding: 5px 10px;
line-height: 1.42857;
text-decoration: none;
color: #e32929;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > li > a:hover, .pagination > li > span:hover {
background: #eee;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
@media (min-width: 768px) {
.container {
width: 720px;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,5 +1,6 @@
<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">
@ -10,9 +11,9 @@
<?php echo Theme::metaTags('description'); ?>
<!-- Include Favicon -->
<?php echo Theme::favicon('img/favicon.png?v=0'); ?>
<?php echo Theme::favicon('img/favicon.png'); ?>
<?php echo Theme::css('css/style.css?v=4'); ?>
<?php echo Theme::css('css/style.css?v=0'); ?>
<!-- Load Bludit Plugins: Site head -->
<?php Theme::plugins('siteHead'); ?>