Blacker theme
This commit is contained in:
parent
6611e64d95
commit
ccd750b07c
@ -1,4 +1,4 @@
|
|||||||
<nav class="navbar navbar-default navbar-fixed-top navbar-custom">
|
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse navbar-custom">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-navbar">
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-navbar">
|
||||||
|
@ -2,10 +2,15 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Lora', 'Times New Roman', serif;
|
font-family: 'Lora', 'Times New Roman', serif;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
background-image: linear-gradient(left, rgb(234,234,234) 0%, rgb(222,222,222) 25%, rgb(234,234,234) 50%, rgb(242,242,242) 75%, rgb(234,234,234) 100%);
|
||||||
|
background-image: -o-linear-gradient(left, rgb(234,234,234) 0%, rgb(222,222,222) 25%, rgb(234,234,234) 50%, rgb(242,242,242) 75%, rgb(234,234,234) 100%);
|
||||||
|
background-image: -moz-linear-gradient(left, rgb(234,234,234) 0%, rgb(222,222,222) 25%, rgb(234,234,234) 50%, rgb(242,242,242) 75%, rgb(234,234,234) 100%);
|
||||||
|
background-image: -webkit-linear-gradient(left, rgb(234,234,234) 0%, rgb(222,222,222) 25%, rgb(234,234,234) 50%, rgb(242,242,242) 75%, rgb(209,209,209) 100%);
|
||||||
|
background-image: -ms-linear-gradient(left, rgb(234,234,234) 0%, rgb(222,222,222) 25%, rgb(234,234,234) 50%, rgb(242,242,242) 75%, rgb(234,234,234) 100%);
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #404040;
|
color: #404040;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #FFF;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
@ -42,7 +47,7 @@ a {
|
|||||||
}
|
}
|
||||||
a:hover,
|
a:hover,
|
||||||
a:focus {
|
a:focus {
|
||||||
color: #0085a1;
|
color: #00a185;
|
||||||
}
|
}
|
||||||
blockquote {
|
blockquote {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
@ -98,12 +103,12 @@ div.panel-body a.list-group-item.view-all {
|
|||||||
::-moz-selection {
|
::-moz-selection {
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
background: #0085a1;
|
background: #00a185;
|
||||||
}
|
}
|
||||||
::selection {
|
::selection {
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
background: #0085a1;
|
background: #00a185;
|
||||||
}
|
}
|
||||||
img::selection {
|
img::selection {
|
||||||
color: white;
|
color: white;
|
||||||
@ -137,7 +142,15 @@ img {
|
|||||||
/* --- Navbar --- */
|
/* --- Navbar --- */
|
||||||
|
|
||||||
.navbar-custom {
|
.navbar-custom {
|
||||||
background: #F5F5F5;
|
background-color: #000000;
|
||||||
|
background-image: linear-gradient(bottom, rgb(0,0,0) 4%, rgb(33,33,33) 42%, rgb(75,75,75) 100%);
|
||||||
|
background-image: -o-linear-gradient(bottom, rgb(0,0,0) 4%, rgb(33,33,33) 42%, rgb(75,75,75) 100%);
|
||||||
|
background-image: -moz-linear-gradient(bottom, rgb(0,0,0) 4%, rgb(33,33,33) 42%, rgb(75,75,75) 100%);
|
||||||
|
background-image: -webkit-linear-gradient(bottom, rgb(0,0,0) 4%, rgb(33,33,33) 42%, rgb(75,75,75) 100%);
|
||||||
|
background-image: -ms-linear-gradient(bottom, rgb(0,0,0) 4%, rgb(33,33,33) 42%, rgb(75,75,75) 100%);
|
||||||
|
color: #fafafa;
|
||||||
|
}
|
||||||
|
.navbar-custom {
|
||||||
border-bottom: 1px solid #EAEAEA;
|
border-bottom: 1px solid #EAEAEA;
|
||||||
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||||
}
|
}
|
||||||
@ -151,14 +164,14 @@ img {
|
|||||||
.navbar-custom .navbar-brand,
|
.navbar-custom .navbar-brand,
|
||||||
.navbar-custom .nav li a {
|
.navbar-custom .nav li a {
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
color: #404040;
|
color: #fafafa;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-custom .navbar-brand:hover,
|
.navbar-custom .navbar-brand:hover,
|
||||||
.navbar-custom .navbar-brand:focus ,
|
.navbar-custom .navbar-brand:focus ,
|
||||||
.navbar-custom .nav li a:hover,
|
.navbar-custom .nav li a:hover,
|
||||||
.navbar-custom .nav li a:focus {
|
.navbar-custom .nav li a:focus {
|
||||||
color: #0085a1;
|
color: #00a185;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-custom .navbar-brand-logo {
|
.navbar-custom .navbar-brand-logo {
|
||||||
@ -262,14 +275,14 @@ img {
|
|||||||
display: block;
|
display: block;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
background: #f5f5f5;
|
background: #232323;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
border-width: 0 1px 1px 1px;
|
border-width: 0 1px 1px 1px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 767px) {
|
@media only screen and (max-width: 767px) {
|
||||||
.navbar-custom .nav .navlinks-container.show-children {
|
.navbar-custom .nav .navlinks-container.show-children {
|
||||||
background: #eee;
|
background: #131313;
|
||||||
}
|
}
|
||||||
.navbar-custom .nav .navlinks-container.show-children .navlinks-children {
|
.navbar-custom .nav .navlinks-container.show-children .navlinks-children {
|
||||||
display: block;
|
display: block;
|
||||||
@ -280,7 +293,7 @@ img {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.navbar-custom .nav .navlinks-container:hover {
|
.navbar-custom .nav .navlinks-container:hover {
|
||||||
background: #eee;
|
background: #131313;
|
||||||
}
|
}
|
||||||
.navbar-custom .nav .navlinks-container:hover .navlinks-children {
|
.navbar-custom .nav .navlinks-container:hover .navlinks-children {
|
||||||
display: block;
|
display: block;
|
||||||
@ -290,7 +303,7 @@ img {
|
|||||||
}
|
}
|
||||||
.navbar-custom .nav .navlinks-container .navlinks-children a {
|
.navbar-custom .nav .navlinks-container .navlinks-children a {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
border: 1px solid #eaeaea;
|
border: 1px solid #323232;
|
||||||
border-width: 0 1px 1px;
|
border-width: 0 1px 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -298,15 +311,20 @@ img {
|
|||||||
/* --- Footer --- */
|
/* --- Footer --- */
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
background-color: black;
|
||||||
|
background-image: linear-gradient(top, rgb(0,0,0) 4%, rgb(12,12,12) 42%, rgb(42,42,42) 100%);
|
||||||
|
background-image: -o-linear-gradient(top, rgb(0,0,0) 4%, rgb(12,12,12) 42%, rgb(42,42,42) 100%);
|
||||||
|
background-image: -moz-linear-gradient(top, rgb(0,0,0) 4%, rgb(12,12,12) 42%, rgb(42,42,42) 100%);
|
||||||
|
background-image: -webkit-linear-gradient(top, rgb(0,0,0) 4%, rgb(12,12,12) 42%, rgb(42,42,42) 100%);
|
||||||
|
background-image: -ms-linear-gradient(top, rgb(0,0,0) 4%, rgb(12,12,12) 42%, rgb(42,42,42) 100%);
|
||||||
padding: 30px 0;
|
padding: 30px 0;
|
||||||
background: #F5F5F5;
|
|
||||||
border-top: 1px #EAEAEA solid;
|
border-top: 1px #EAEAEA solid;
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a {
|
footer a {
|
||||||
color: #404040;
|
color: #353535;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .list-inline {
|
footer .list-inline {
|
||||||
@ -360,7 +378,7 @@ footer .theme-by {
|
|||||||
.post-preview a:focus,
|
.post-preview a:focus,
|
||||||
.post-preview a:hover {
|
.post-preview a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #0085a1;
|
color: #00a185;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-preview .post-title {
|
.post-preview .post-title {
|
||||||
@ -653,8 +671,8 @@ footer .theme-by {
|
|||||||
.pager li a:hover,
|
.pager li a:hover,
|
||||||
.pager li a:focus {
|
.pager li a:focus {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
background: #0085a1;
|
background: #00a185;
|
||||||
border: 1px solid #0085a1;
|
border: 1px solid #00a185;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pager {
|
.pager {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user