Bootstrap 5 + Darkmode changes
This commit is contained in:
@ -1,423 +1,124 @@
|
||||
/* General body background and text color */
|
||||
body {
|
||||
background-color: #121212; /* Dark background */
|
||||
color: #e0e0e0; /* Light text */
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.navbar {
|
||||
background-color: #1f1f1f;
|
||||
border-color: #333;
|
||||
}
|
||||
.navbar a {
|
||||
color: #e0e0e0;
|
||||
}
|
||||
.navbar a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* Panels */
|
||||
.panel {
|
||||
background-color: #1f1f1f;
|
||||
border-color: #333;
|
||||
color: #e0e0e0;
|
||||
}
|
||||
.panel-heading {
|
||||
background-color: #333;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.btn {
|
||||
background-color: #333;
|
||||
color: #ffffff;
|
||||
border-color: #444;
|
||||
}
|
||||
.btn:hover {
|
||||
background-color: #444;
|
||||
border-color: #555;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
.form-control {
|
||||
background-color: #1f1f1f;
|
||||
color: #e0e0e0;
|
||||
border: 1px solid #333;
|
||||
}
|
||||
.form-control:focus {
|
||||
border-color: #555;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* app/css/main.css
|
||||
/**
|
||||
* app/css/main-dark.css
|
||||
*
|
||||
* This file is for any css that should be applied site wide.
|
||||
* This file provides dark mode styles to override existing Bootstrap 5 base styles.
|
||||
*
|
||||
* @version 3.0
|
||||
* @version 3.0-dark
|
||||
* @author Joey Kimsey <Joey@thetempusproject.com>
|
||||
* @link https://TheTempusProject.com
|
||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
||||
*/
|
||||
|
||||
@media ( min-width: 768px ) {
|
||||
.side-nav {
|
||||
/* background-color: #222; */
|
||||
}
|
||||
.side-nav li a:hover,
|
||||
.side-nav li a:focus {
|
||||
background-color: #fff !important;
|
||||
}
|
||||
.context-main {
|
||||
color: #fff;
|
||||
}
|
||||
.context-main-bg {
|
||||
background-color: #2c2c2c;
|
||||
}
|
||||
.context-other {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: linear-gradient(180deg, #2c2c2c, #1e1e1e 100px, #1e1e1e);
|
||||
color: #f5f5f5;
|
||||
}
|
||||
|
||||
/**
|
||||
* Other
|
||||
*/
|
||||
.bars {
|
||||
/* background-color: #333; */
|
||||
/* box-shadow: 0 5px 0 #333, 0 10px 0 #333; */
|
||||
}
|
||||
.bg-gray {
|
||||
/* background-image: -moz-linear-gradient( center bottom, #BBBBBB 0%, #F0F0F0 100% ); */
|
||||
/* box-shadow: 0 1px 0 #B4B3B3; */
|
||||
}
|
||||
.UI-buffer {
|
||||
/* border-bottom: 1px solid #CCCCCC; */
|
||||
}
|
||||
.UI-page-buffer {
|
||||
/* border-bottom: 1px solid #CCCCCC; */
|
||||
}
|
||||
.table-user-information>tbody>tr {
|
||||
/* border-top: 1px solid rgb( 221, 221, 221 ); */
|
||||
}
|
||||
.sticky-foot-head {
|
||||
/* background: #EDEFF1; */
|
||||
/* border-bottom: 1px solid #CCCCCC; */
|
||||
/* border-top: 1px solid #DDDDDD; */
|
||||
}
|
||||
.sticky-foot {
|
||||
background-color: #fff;
|
||||
}
|
||||
.sticky-copy {
|
||||
background: #282828; /* E3E3E3; */
|
||||
border-bottom: 1px solid #b0b0b0; /* CCCCCC; */
|
||||
border-top: 1px solid #bfbfbf; /* DDDDDD; */
|
||||
}
|
||||
|
||||
/**
|
||||
* Main Carousel
|
||||
*/
|
||||
.main-text {
|
||||
color: #000;
|
||||
}
|
||||
.btn-clear {
|
||||
color: #000;
|
||||
border-color: #000;
|
||||
}
|
||||
.btn-clear:hover {
|
||||
color: #fff;
|
||||
/* background-color: #F000FF; */
|
||||
}
|
||||
|
||||
/**
|
||||
* Top Navigation
|
||||
*/
|
||||
.top-nav>li>a {
|
||||
/* color: #999; */
|
||||
}
|
||||
.top-nav>li>a:hover,
|
||||
.top-nav>li>a:focus,
|
||||
.top-nav>.open>a,
|
||||
.top-nav>.open>a:hover,
|
||||
.top-nav>.open>a:focus {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
.top-nav>.open>.dropdown-menu {
|
||||
/* border: 1px solid rgba( 0, 0, 0, .15 ); */
|
||||
background-color: #000;
|
||||
/* -webkit-box-shadow: 0 6px 12px rgba( 0, 0, 0, .175 ); */
|
||||
/* box-shadow: 0 6px 12px rgba( 0, 0, 0, .175 ); */
|
||||
}
|
||||
|
||||
/**
|
||||
* Messages Dropdown
|
||||
*/
|
||||
li.message-header {
|
||||
/* border-bottom: 1px solid rgba( 0, 0, 0, .15 ); */
|
||||
}
|
||||
li.message-preview {
|
||||
/* border-bottom: 1px solid rgba( 0, 0, 0, .15 ); */
|
||||
}
|
||||
|
||||
/**
|
||||
* Widget
|
||||
*/
|
||||
.widget li.list-group-item {
|
||||
/* border-top: 1px solid #ddd; */
|
||||
}
|
||||
.widget li.list-group-item:hover {
|
||||
/* background-color: rgba( 86, 61, 124, .1 ); */
|
||||
}
|
||||
.widget .mic-info {
|
||||
/* color: #666666; */
|
||||
}
|
||||
|
||||
/**
|
||||
* Footer and Copyright
|
||||
*/
|
||||
.copy {
|
||||
background: #282828; /* E3E3E3; */
|
||||
border-bottom: 1px solid #b0b0b0; /* CCCCCC; */
|
||||
border-top: 1px solid #bfbfbf; /* DDDDDD; */
|
||||
}
|
||||
.footer-head {
|
||||
background: #282828; /* E3E3E3; */
|
||||
border-bottom: 1px solid #b0b0b0; /* CCCCCC; */
|
||||
border-top: 1px solid #bfbfbf; /* DDDDDD; */
|
||||
}
|
||||
.footer-head h3 {
|
||||
border-bottom: 1px solid #a1a7ad; /* BAC1C8 */
|
||||
color: #4a5c6e; /* 54697E */
|
||||
}
|
||||
.footer-head ul {
|
||||
/* color: #7F8C8D; */
|
||||
}
|
||||
.footer-head a {
|
||||
/* color: #78828D */
|
||||
}
|
||||
|
||||
/**
|
||||
* Side Navigation
|
||||
*/
|
||||
.side-nav>li>ul>li>a {
|
||||
/* color: #999; */
|
||||
}
|
||||
.side-nav>li>ul>li>a:hover {
|
||||
color: #000;
|
||||
}
|
||||
.side-nav .active > a {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
.side-nav .active > a:hover {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Social
|
||||
*/
|
||||
.social span {
|
||||
/* background: none repeat scroll 0 0 #B5B5B5; */
|
||||
/* border: 2px solid #B5B5B5; */
|
||||
}
|
||||
.social span a {
|
||||
/* color: #EDEFF1; */
|
||||
}
|
||||
.social span:hover {
|
||||
/* border: 2px solid #2c3e50;
|
||||
background: #2c3e50; */
|
||||
}
|
||||
.social span a i {
|
||||
/* color: #EDEFF1 !important; */
|
||||
}
|
||||
|
||||
/**
|
||||
* Newsletter Box
|
||||
*/
|
||||
.newsletter-box input#appendedInputButton {
|
||||
background: #000;
|
||||
}
|
||||
.newsletter-box .btn {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Colored Badges
|
||||
*/
|
||||
.badge {
|
||||
color: #000;
|
||||
/* background-color: #999999; */
|
||||
}
|
||||
.badge:hover {
|
||||
color: #000;
|
||||
}
|
||||
.badge-error {
|
||||
/* background-color: #b94a48; */
|
||||
}
|
||||
.badge-error:hover {
|
||||
/* background-color: #953b39; */
|
||||
}
|
||||
.badge-warning {
|
||||
/* background-color: #f89406; */
|
||||
}
|
||||
.badge-warning:hover {
|
||||
/* background-color: #c67605; */
|
||||
}
|
||||
.badge-success {
|
||||
/* background-color: #468847; */
|
||||
}
|
||||
.badge-success:hover {
|
||||
/* background-color: #356635; */
|
||||
}
|
||||
.badge-info {
|
||||
/* background-color: #3a87ad; */
|
||||
}
|
||||
.badge-info:hover {
|
||||
/* background-color: #2d6987; */
|
||||
}
|
||||
.badge-inverse {
|
||||
/* background-color: #333333; */
|
||||
}
|
||||
.badge-inverse:hover {
|
||||
/* background-color: #1a1a1a; */
|
||||
}
|
||||
|
||||
/**
|
||||
* Install Terms
|
||||
*/
|
||||
* Install Terms
|
||||
*/
|
||||
.install-terms {
|
||||
/* border: 1px solid #ccc;
|
||||
background: #f2f2f2; */
|
||||
border: 1px solid #555;
|
||||
background: #3a3a3a;
|
||||
}
|
||||
.install-terms p,
|
||||
.install-terms li {
|
||||
/* color: #333; */
|
||||
color: #dcdcdc;
|
||||
}
|
||||
.install-terms h3 {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
.install-terms h4 {
|
||||
color: #fff;
|
||||
color: #eaeaea;
|
||||
}
|
||||
.install-terms strong {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
.context-main {
|
||||
color: #ffffff;
|
||||
}
|
||||
.context-other {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Terms Page
|
||||
*/
|
||||
* Terms Page
|
||||
*/
|
||||
.terms-page {
|
||||
/* border: 1px solid #ccc;
|
||||
background: #f2f2f2; */
|
||||
border: 1px solid #555;
|
||||
background: #3a3a3a;
|
||||
}
|
||||
.terms-page p,
|
||||
.terms-page li {
|
||||
/* color: #333; */
|
||||
color: #dcdcdc;
|
||||
}
|
||||
.terms-page h3 {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
.terms-page h4 {
|
||||
color: #fff;
|
||||
color: #eaeaea;
|
||||
}
|
||||
.terms-page strong {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Terms
|
||||
*/
|
||||
* Terms
|
||||
*/
|
||||
.terms {
|
||||
/* border: 1px solid #ccc; */
|
||||
/* background: #f2f2f2; */
|
||||
border: 1px solid #555;
|
||||
background: #3a3a3a;
|
||||
}
|
||||
.terms p,
|
||||
.terms li {
|
||||
/* color: #333; */
|
||||
color: #dcdcdc;
|
||||
}
|
||||
.terms h3 {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
.terms h4 {
|
||||
color: #fff;
|
||||
color: #eaeaea;
|
||||
}
|
||||
.terms strong {
|
||||
color: #fff;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.material-switch > label::before {
|
||||
/* background: rgb(0, 0, 0); */
|
||||
/* box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5); */
|
||||
/**
|
||||
* Form Control
|
||||
*/
|
||||
.form-control-dark:focus {
|
||||
border-color: #1e90ff;
|
||||
box-shadow: 0 0 0 .25rem rgba(30, 144, 255, .5);
|
||||
}
|
||||
.material-switch > label::after {
|
||||
/* background: rgb(255, 255, 255); */
|
||||
/* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); */
|
||||
|
||||
/**
|
||||
* Example Divider
|
||||
*/
|
||||
.b-example-divider {
|
||||
background-color: rgba(255, 255, 255, .1);
|
||||
border: solid rgba(255, 255, 255, .15);
|
||||
box-shadow: inset 0 .5em 1.5em rgba(255, 255, 255, .1), inset 0 .125em .5em rgba(255, 255, 255, .15);
|
||||
}
|
||||
|
||||
/**
|
||||
* Text Shadows
|
||||
*/
|
||||
.text-shadow-1 {
|
||||
text-shadow: 0 .125rem .25rem rgba(255, 255, 255, .25);
|
||||
}
|
||||
.text-shadow-2 {
|
||||
text-shadow: 0 .25rem .5rem rgba(255, 255, 255, .25);
|
||||
}
|
||||
.text-shadow-3 {
|
||||
text-shadow: 0 .5rem 1.5rem rgba(255, 255, 255, .25);
|
||||
}
|
545
app/css/main.css
545
app/css/main.css
@ -8,6 +8,75 @@
|
||||
* @link https://TheTempusProject.com
|
||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Base styles for the switch container */
|
||||
.material-switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 50px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* Hide the default checkbox */
|
||||
.material-switch input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/* Style the label as the switch */
|
||||
.material-switch .label-default {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: var(--switch-off-bg, #ccc);
|
||||
border-radius: 25px;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
/* Style the toggle circle (slider) */
|
||||
.material-switch .label-default::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--switch-slider-bg, #fff);
|
||||
bottom: 2.5px;
|
||||
left: 5px;
|
||||
transition: transform 0.3s ease-in-out;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* Change background color when checked */
|
||||
.material-switch input:checked + .label-default {
|
||||
background-color: var(--switch-on-bg, #555); /* Bootstrap primary color */
|
||||
}
|
||||
|
||||
/* Move the slider when checked */
|
||||
.material-switch input:checked + .label-default::before {
|
||||
transform: translateX(25px); /* Adjust based on switch width */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.context-main {
|
||||
color: #000;
|
||||
}
|
||||
.context-other {
|
||||
color: #fff;
|
||||
}
|
||||
html {
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
position: relative;
|
||||
@ -16,6 +85,9 @@ html {
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
body {
|
||||
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
|
||||
}
|
||||
@media ( min-width: 768px ) {
|
||||
.main {
|
||||
padding-right: 40px;
|
||||
@ -25,411 +97,9 @@ pre {
|
||||
padding-right: 225px;
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Other
|
||||
*/
|
||||
.bars {
|
||||
display: block;
|
||||
width: 60px;
|
||||
height: 3px;
|
||||
background-color: #333;
|
||||
box-shadow: 0 5px 0 #333, 0 10px 0 #333;
|
||||
}
|
||||
.slide-text-bg {
|
||||
opacity: 0.6;
|
||||
}
|
||||
.avatar-125 {
|
||||
height: 125px;
|
||||
width: 125px;
|
||||
}
|
||||
.full {
|
||||
width: 100%;
|
||||
}
|
||||
.gap {
|
||||
height: 30px;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
.supportLi h4 {
|
||||
font-size: 20px;
|
||||
font-weight: lighter;
|
||||
line-height: normal;
|
||||
margin-bottom: 0 !important;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.bg-gray {
|
||||
background-image: -moz-linear-gradient( center bottom, #BBBBBB 0%, #F0F0F0 100% );
|
||||
box-shadow: 0 1px 0 #B4B3B3;
|
||||
}
|
||||
.payments {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
.UI-buffer {
|
||||
padding-top: 35px;
|
||||
height: auto;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
}
|
||||
.avatar {
|
||||
max-width: 33px;
|
||||
}
|
||||
.UI-page-buffer {
|
||||
padding-top: 30px;
|
||||
position: relative;
|
||||
height: auto;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
}
|
||||
.main {
|
||||
padding: 20px;
|
||||
padding-bottom: 75px;
|
||||
}
|
||||
.user-row {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.user-row:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.dropdown-user {
|
||||
margin: 13px 0;
|
||||
padding: 5px;
|
||||
height: 100%;
|
||||
}
|
||||
.dropdown-user:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
.table-user-information>tbody>tr {
|
||||
border-top: 1px solid rgb( 221, 221, 221 );
|
||||
}
|
||||
.table-user-information>tbody>tr:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
.table-user-information>tbody>tr>td {
|
||||
border-top: 0;
|
||||
}
|
||||
.top-pad {
|
||||
margin-top: 70px;
|
||||
}
|
||||
.foot-pad {
|
||||
padding-bottom: 0;
|
||||
/* padding-bottom: 261px; */
|
||||
}
|
||||
.dynamic-footer-padding {
|
||||
padding-bottom: var(--footer-height);
|
||||
}
|
||||
.footer-head .navbar-toggler {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
}
|
||||
.avatar-round-40 {
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
}
|
||||
.sticky-foot-head {
|
||||
z-index: 10;
|
||||
position: fixed;
|
||||
bottom: 51px;
|
||||
width: 100%;
|
||||
background: #EDEFF1;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
border-top: 1px solid #DDDDDD;
|
||||
}
|
||||
.sticky-foot {
|
||||
background-color: #000;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.sticky-copy {
|
||||
z-index: 10;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
height: 50px;
|
||||
background: #E3E3E3;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
border-top: 1px solid #DDDDDD;
|
||||
}
|
||||
|
||||
/**
|
||||
* Main Carousel
|
||||
*/
|
||||
.main-text {
|
||||
padding-bottom: 0px;
|
||||
padding-top: 0px;
|
||||
top: 10px;
|
||||
bottom: auto;
|
||||
z-index: 10;
|
||||
width: auto;
|
||||
color: #FFF;
|
||||
}
|
||||
.btn-min-block {
|
||||
min-width: 170px;
|
||||
line-height: 26px;
|
||||
}
|
||||
.btn-clear {
|
||||
color: #FFF;
|
||||
background-color: transparent;
|
||||
border-color: #FFF;
|
||||
margin-right: 15px;
|
||||
}
|
||||
.btn-clear:hover {
|
||||
color: #000;
|
||||
background-color: #FFF;
|
||||
}
|
||||
#carousel-home {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.col-centered {
|
||||
float: none;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Messages Dropdown
|
||||
*/
|
||||
ul.message-dropdown {
|
||||
padding: 0;
|
||||
max-height: 250px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
li.message-header {
|
||||
margin: 5px 0;
|
||||
border-bottom: 1px solid rgba( 0, 0, 0, .15 );
|
||||
}
|
||||
li.message-preview {
|
||||
width: 275px;
|
||||
border-bottom: 1px solid rgba( 0, 0, 0, .15 );
|
||||
}
|
||||
li.message-preview>a {
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
li.message-footer {
|
||||
margin: 5px 0;
|
||||
}
|
||||
ul.alert-dropdown {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Widget
|
||||
*/
|
||||
.widget .list-group {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.widget .panel-title {
|
||||
display: inline
|
||||
}
|
||||
.widget .label {
|
||||
float: right;
|
||||
}
|
||||
.widget li.list-group-item {
|
||||
border-radius: 0;
|
||||
border: 0;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
.widget li.list-group-item:hover {
|
||||
background-color: rgba( 86, 61, 124, .1 );
|
||||
}
|
||||
.widget .mic-info {
|
||||
color: #666666;
|
||||
font-size: 11px;
|
||||
}
|
||||
.widget .action {
|
||||
margin-top: 5px;
|
||||
}
|
||||
.widget .comment-text {
|
||||
font-size: 12px;
|
||||
}
|
||||
.widget .btn-block {
|
||||
border-top-left-radius: 0px;
|
||||
border-top-right-radius: 0px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Footer and Copyright
|
||||
*/
|
||||
.copy {
|
||||
z-index: 10;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
background: #E3E3E3;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
border-top: 1px solid #DDDDDD;
|
||||
}
|
||||
.footer-head {
|
||||
z-index: 10;
|
||||
position: absolute;
|
||||
bottom: 51px;
|
||||
width: 100%;
|
||||
background: #EDEFF1;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
border-top: 1px solid #DDDDDD;
|
||||
}
|
||||
.footer-head p {
|
||||
margin: 0;
|
||||
}
|
||||
.footer-head img {
|
||||
max-width: 100%;
|
||||
}
|
||||
.footer-head h3 {
|
||||
border-bottom: 1px solid #BAC1C8;
|
||||
color: #54697E;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: 27px;
|
||||
padding: 5px 0 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.footer-head ul {
|
||||
font-size: 13px;
|
||||
list-style-type: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
margin-top: 15px;
|
||||
color: #7F8C8D;
|
||||
}
|
||||
.footer-head ul li a {
|
||||
padding: 0 0 5px 0;
|
||||
display: inline-block;
|
||||
}
|
||||
.footer-head a {
|
||||
color: #78828D
|
||||
}
|
||||
|
||||
/**
|
||||
* Social
|
||||
*/
|
||||
.social {
|
||||
margin-top: 75px;
|
||||
bottom: 0;
|
||||
}
|
||||
.content {
|
||||
position: absolute;
|
||||
}
|
||||
.social span {
|
||||
background: none repeat scroll 0 0 #B5B5B5;
|
||||
border: 2px solid #B5B5B5;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
float: center;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
margin: 0 8px 0 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
width: 41px;
|
||||
transition: all 0.5s ease 0s;
|
||||
-moz-transition: all 0.5s ease 0s;
|
||||
-webkit-transition: all 0.5s ease 0s;
|
||||
-ms-transition: all 0.5s ease 0s;
|
||||
-o-transition: all 0.5s ease 0s;
|
||||
}
|
||||
.social span:hover {
|
||||
transform: scale( 1.15 ) rotate( 360deg) ;
|
||||
-webkit-transform: scale( 1.1 ) rotate( 360deg) ;
|
||||
-moz-transform: scale( 1.1 ) rotate( 360deg) ;
|
||||
-ms-transform: scale( 1.1 ) rotate( 360deg) ;
|
||||
-o-transform: scale( 1.1 ) rotate( 360deg) ;
|
||||
}
|
||||
.social span a {
|
||||
color: #EDEFF1;
|
||||
}
|
||||
.social span:hover {
|
||||
border: 2px solid #2c3e50;
|
||||
background: #2c3e50;
|
||||
}
|
||||
.social span a i {
|
||||
font-size: 16px;
|
||||
margin: 0 0 0 5px;
|
||||
color: #EDEFF1 !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Newsletter Box
|
||||
*/
|
||||
.newsletter-box input#appendedInputButton {
|
||||
background: #FFFFFF;
|
||||
display: inline-block;
|
||||
float: center;
|
||||
height: 30px;
|
||||
clear: both;
|
||||
width: 100%;
|
||||
}
|
||||
.newsletter-box .btn {
|
||||
border: medium none;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-o-border-radius: 3px;
|
||||
-ms-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
display: inline-block;
|
||||
height: 40px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
}
|
||||
.newsletter-box {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/**
|
||||
* Colored Badges
|
||||
*/
|
||||
.badge {
|
||||
padding: 1px 9px 2px;
|
||||
font-size: 12.025px;
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
color: #ffffff;
|
||||
background-color: #999999;
|
||||
-webkit-border-radius: 9px;
|
||||
-moz-border-radius: 9px;
|
||||
border-radius: 9px;
|
||||
}
|
||||
.badge:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.badge-error {
|
||||
background-color: #b94a48;
|
||||
}
|
||||
.badge-error:hover {
|
||||
background-color: #953b39;
|
||||
}
|
||||
.badge-warning {
|
||||
background-color: #f89406;
|
||||
}
|
||||
.badge-warning:hover {
|
||||
background-color: #c67605;
|
||||
}
|
||||
.badge-success {
|
||||
background-color: #468847;
|
||||
}
|
||||
.badge-success:hover {
|
||||
background-color: #356635;
|
||||
}
|
||||
.badge-info {
|
||||
background-color: #3a87ad;
|
||||
}
|
||||
.badge-info:hover {
|
||||
background-color: #2d6987;
|
||||
}
|
||||
.badge-inverse {
|
||||
background-color: #333333;
|
||||
}
|
||||
.badge-inverse:hover {
|
||||
background-color: #1a1a1a;
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -517,71 +187,6 @@ ul.alert-dropdown {
|
||||
.terms strong {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
.navbar-header {
|
||||
margin-right: 75px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
padding-left: 75px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.material-switch > input[type="checkbox"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.material-switch > label {
|
||||
cursor: pointer;
|
||||
height: 0px;
|
||||
position: relative;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.material-switch > label::before {
|
||||
background: rgb(0, 0, 0);
|
||||
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 8px;
|
||||
content: '';
|
||||
height: 16px;
|
||||
margin-top: -8px;
|
||||
position:absolute;
|
||||
opacity: 0.3;
|
||||
transition: all 0.4s ease-in-out;
|
||||
width: 40px;
|
||||
}
|
||||
.material-switch > label::after {
|
||||
background: rgb(255, 255, 255);
|
||||
border-radius: 16px;
|
||||
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
|
||||
content: '';
|
||||
height: 24px;
|
||||
left: -4px;
|
||||
margin-top: -8px;
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
width: 24px;
|
||||
}
|
||||
.material-switch > input[type="checkbox"]:checked + label::before {
|
||||
background: inherit;
|
||||
opacity: 0.5;
|
||||
}
|
||||
.material-switch > input[type="checkbox"]:checked + label::after {
|
||||
background: inherit;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
.pricing-header {
|
||||
max-width: 700px;
|
||||
}
|
||||
|
Reference in New Issue
Block a user