CSS updates
This commit is contained in:
parent
708826cf86
commit
82a9be8082
|
@ -153,6 +153,7 @@ a {
|
||||||
|
|
||||||
.uk-panel-box {
|
.uk-panel-box {
|
||||||
background: #F9F9F9 !important;
|
background: #F9F9F9 !important;
|
||||||
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uk-container {
|
.uk-container {
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
/* ----------- UIKIT HACKs FOR BLUDIT ----------- */
|
/* ----------- UIKIT HACKs FOR BLUDIT ----------- */
|
||||||
html {
|
html {
|
||||||
background: #f1f1f1;
|
background: #F7F7F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.uk-form * {
|
||||||
|
border-radius: 2px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uk-button-primary {
|
.uk-button-primary {
|
||||||
|
@ -13,8 +17,9 @@ html {
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"] {
|
input[type="password"] {
|
||||||
border-color: #FFF !important;
|
border-color: #EBEBEB !important;
|
||||||
background: #FFF;
|
border-radius: 2px !important;
|
||||||
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:disabled {
|
input:disabled {
|
||||||
|
@ -22,7 +27,7 @@ input:disabled {
|
||||||
}
|
}
|
||||||
|
|
||||||
.uk-vertical-align-middle {
|
.uk-vertical-align-middle {
|
||||||
margin-top: -100px;
|
margin-top: -150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uk-panel {
|
.uk-panel {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ----------- UIKIT HACKs FOR BLUDIT ----------- */
|
/* ----------- UIKIT HACKs FOR BLUDIT ----------- */
|
||||||
html {
|
html {
|
||||||
background: #f3f3f3;
|
background: #F7F7F7;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
@ -17,8 +17,9 @@ html {
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"] {
|
input[type="password"] {
|
||||||
border-color: #FFF !important;
|
border-color: #EBEBEB !important;
|
||||||
border-radius: 2px !important;
|
border-radius: 2px !important;
|
||||||
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uk-alert {
|
.uk-alert {
|
||||||
|
@ -49,7 +50,7 @@ div.login-form > h2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
a.login-email {
|
a.login-email {
|
||||||
border: 1px solid #eeeeee;
|
border: 0;
|
||||||
color: #777;
|
color: #777;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="<?php echo $Site->language() ?>">
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<base href="<?php echo HTML_PATH_ADMIN_THEME ?>">
|
|
||||||
<meta charset="<?php echo CHARSET ?>">
|
<meta charset="<?php echo CHARSET ?>">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="robots" content="noindex,nofollow">
|
<meta name="robots" content="noindex,nofollow">
|
||||||
|
@ -9,23 +8,22 @@
|
||||||
<title><?php echo $layout['title'] ?></title>
|
<title><?php echo $layout['title'] ?></title>
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.png">
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo HTML_PATH_ADMIN_THEME.'img/favicon.png' ?>">
|
||||||
|
|
||||||
<!-- CSS -->
|
<!-- CSS -->
|
||||||
<link rel="stylesheet" type="text/css" href="./css/uikit/uikit.almost-flat.min.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/uikit.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/uikit/upload.almost-flat.min.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/upload.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/uikit/form-file.almost-flat.min.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/form-file.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/uikit/placeholder.almost-flat.min.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/placeholder.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/uikit/progress.almost-flat.min.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/uikit/progress.almost-flat.min.css?version='.BLUDIT_VERSION ?>">
|
||||||
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/default.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/default.css?version=<?php echo BLUDIT_VERSION ?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo HTML_PATH_ADMIN_THEME.'css/jquery.datetimepicker.css?version='.BLUDIT_VERSION ?>">
|
||||||
<link rel="stylesheet" type="text/css" href="./css/jquery.datetimepicker.css?version=<?php echo BLUDIT_VERSION ?>">
|
|
||||||
|
|
||||||
<!-- Javascript -->
|
<!-- Javascript -->
|
||||||
<script charset="utf-8" src="./js/jquery.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
|
<script charset="utf-8" src="<?php echo HTML_PATH_ADMIN_THEME.'js/jquery.min.js?version='.BLUDIT_VERSION ?>"></script>
|
||||||
<script charset="utf-8" src="./js/uikit/uikit.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
|
<script charset="utf-8" src="<?php echo HTML_PATH_ADMIN_THEME.'js/uikit/uikit.min.js?version='.BLUDIT_VERSION ?>"></script>
|
||||||
<script charset="utf-8" src="./js/uikit/upload.min.js?version=<?php echo BLUDIT_VERSION ?>"></script>
|
<script charset="utf-8" src="<?php echo HTML_PATH_ADMIN_THEME.'js/uikit/upload.min.js?version='.BLUDIT_VERSION ?>"></script>
|
||||||
<script charset="utf-8" src="./js/jquery.datetimepicker.js?version=<?php echo BLUDIT_VERSION ?>"></script>
|
<script charset="utf-8" src="<?php echo HTML_PATH_ADMIN_THEME.'js/jquery.datetimepicker.js?version='.BLUDIT_VERSION ?>"></script>
|
||||||
|
|
||||||
<!-- Plugins -->
|
<!-- Plugins -->
|
||||||
<?php Theme::plugins('adminHead') ?>
|
<?php Theme::plugins('adminHead') ?>
|
||||||
|
|
|
@ -57,6 +57,10 @@ header p {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post a {
|
||||||
|
color: #2672ec;
|
||||||
|
}
|
||||||
|
|
||||||
.post > header {
|
.post > header {
|
||||||
border-bottom-color: #F7F7F7;
|
border-bottom-color: #F7F7F7;
|
||||||
margin-bottom: 1.3em;
|
margin-bottom: 1.3em;
|
||||||
|
@ -77,6 +81,10 @@ header p {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post > header .title h1 a {
|
||||||
|
color: #3c3b3b;
|
||||||
|
}
|
||||||
|
|
||||||
.post > footer .stats {
|
.post > footer .stats {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<!-- Post's header -->
|
<!-- Post's header -->
|
||||||
<header>
|
<header>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<h2><a href="<?php echo $Page->permalink() ?>"><?php echo $Page->title() ?></a></h2>
|
<h1><a href="<?php echo $Page->permalink() ?>"><?php echo $Page->title() ?></a></h1>
|
||||||
<p><?php echo $Page->description() ?></p>
|
<p><?php echo $Page->description() ?></p>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
Loading…
Reference in New Issue