Splash page fix, error page fix, and alot else
This commit is contained in:
parent
11348162e6
commit
cbc54fd9d6
@ -30,7 +30,7 @@
|
|||||||
.panel .panel-heading .panel-title {
|
.panel .panel-heading .panel-title {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.text-dark, .drop-title, .tabs-style-flip nav a, .text-info, .text-dark .bg-title .breadcrumb a, .daterangepicker .input-mini, .dd-handle, .dd3-content, .dropify-wrapper, .form-control, .panel-default .panel-heading, .panel-white .panel-heading, .select2-container .select2-choice, .steamline .sl-right div>a, .white-box .box-title, a.list-group-item, button.list-group-item, h1, h2, h3, h4, h5, h6, .panel-default .panel-body, .panel-white .panel-body {
|
.dataTables_wrapper, .dataTables_info, .text-dark, .drop-title, .tabs-style-flip nav a, .text-info, .text-dark .bg-title .breadcrumb a, .daterangepicker .input-mini, .dd-handle, .dd3-content, .dropify-wrapper, .form-control, .panel-default .panel-heading, .panel-white .panel-heading, .select2-container .select2-choice, .steamline .sl-right div>a, .white-box .box-title, a.list-group-item, button.list-group-item, h1, h2, h3, h4, h5, h6, .panel-default .panel-body, .panel-white .panel-body {
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
@ -106,7 +106,7 @@
|
|||||||
.bg-title {
|
.bg-title {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
.content-wrap, .bg-org {
|
.content-wrap {
|
||||||
background: var(--main-bg-color) !important;
|
background: var(--main-bg-color) !important;
|
||||||
}
|
}
|
||||||
.panel-blue .panel-heading, .panel-info .panel-heading {
|
.panel-blue .panel-heading, .panel-info .panel-heading {
|
||||||
@ -123,7 +123,21 @@
|
|||||||
.nav-tabs>li>a:hover {
|
.nav-tabs>li>a:hover {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
|
.bg-org {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
.tab-content>.active {
|
||||||
|
display: block;
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
|
.fade {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
|
/* error page */
|
||||||
|
.error-box {
|
||||||
|
top: 10%;
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
/* Settings - menu tabs */
|
/* Settings - menu tabs */
|
||||||
.sttabs nav {
|
.sttabs nav {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
@ -163,12 +177,15 @@
|
|||||||
.table-hover>tbody>tr:hover, .table-striped>tbody>tr:nth-of-type(odd), .table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
|
.table-hover>tbody>tr:hover, .table-striped>tbody>tr:nth-of-type(odd), .table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
|
||||||
background-color: rgba(0, 0, 0, 0.15)!important;
|
background-color: rgba(0, 0, 0, 0.15)!important;
|
||||||
}
|
}
|
||||||
|
.table-hover>tbody>tr:hover {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
/* Settings - popup modal */
|
/* Settings - popup modal */
|
||||||
.white-popup .panel-heading, .white-popup>.col-md-6>.white-box:first-child {
|
.white-popup .panel-heading, .white-popup>.col-md-6>.white-box:first-child {
|
||||||
background: var(--modal-bg-color)!important;
|
background: var(--main-bg-color)!important;
|
||||||
}
|
}
|
||||||
.white-popup .panel-body, .white-popup>.col-md-6>.white-box:nth-child(2) {
|
.white-popup .panel-body, .white-popup>.col-md-6>.white-box:nth-child(2) {
|
||||||
background: var(--modal-bg-color) !important;
|
background: var(--main-bg-color) !important;
|
||||||
}
|
}
|
||||||
.panel-blue a:hover, .panel-info a:hover {
|
.panel-blue a:hover, .panel-info a:hover {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
@ -195,6 +212,40 @@
|
|||||||
background-color: #1b1a1a;
|
background-color: #1b1a1a;
|
||||||
border-color: #1b1a1a;
|
border-color: #1b1a1a;
|
||||||
}
|
}
|
||||||
|
/* Settings logs */
|
||||||
|
|
||||||
|
.table-striped>tbody>tr:nth-of-type(odd) {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
|
.table-striped>tbody>tr:nth-of-type(odd):hover {
|
||||||
|
background: rgba(0,0,0,.25)!important;
|
||||||
|
}
|
||||||
|
table.dataTable>tbody>tr:nth-of-type(even) {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
|
table.dataTable>tbody>tr:nth-of-type(even):hover {
|
||||||
|
background: rgba(0,0,0,.25)!important;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
||||||
|
background: rgba(0,0,0,.08)!important;
|
||||||
|
color: var(--link-color) !important;
|
||||||
|
border: 0!important;
|
||||||
|
border-radius: 0!important;
|
||||||
|
margin: 0!important;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||||
|
background: rgba(0,0,0,.15);
|
||||||
|
color: rgba(255,255,255,.7)!important;
|
||||||
|
border: 0!important;
|
||||||
|
border-radius: 0!important;
|
||||||
|
margin: 0!important;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button:hover, .nav-tabs li a:focus, .nav-tabs li a:hover {
|
||||||
|
background: rgba(255,255,255,.08)!important;
|
||||||
|
color: #eee!important;
|
||||||
|
}
|
||||||
/* Settings - custom CSS */
|
/* Settings - custom CSS */
|
||||||
.ace-idle-fingers {
|
.ace-idle-fingers {
|
||||||
background-color: rgba(0, 0, 0, 0.15) !important;
|
background-color: rgba(0, 0, 0, 0.15) !important;
|
||||||
@ -377,4 +428,120 @@
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 250px;
|
max-height: 250px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
}
|
||||||
|
/* Splash screen */
|
||||||
|
.p-20 {
|
||||||
|
padding: 0px!important;
|
||||||
|
}
|
||||||
|
#splashScreen, .lock-screen {
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
#splashScreen div[id^=menu-] {
|
||||||
|
max-width: 88px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: auto;
|
||||||
|
margin-left: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: 600px!important;
|
||||||
|
margin-top: 0px!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen div[id^=menu-] {
|
||||||
|
background: transparent;
|
||||||
|
border-radius: 3px;
|
||||||
|
max-width: 100px;
|
||||||
|
height: 155px;
|
||||||
|
margin: 24px 20px 0 0!important;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#splashScreen .bg-org.fc-event {
|
||||||
|
background-color: transparent !important;
|
||||||
|
border-radius: 1000px;
|
||||||
|
height: 80px!important;
|
||||||
|
width: 80px!important;
|
||||||
|
margin: 25px auto 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen .homepage-text {
|
||||||
|
width: 120px;
|
||||||
|
background: transparent;
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0;
|
||||||
|
position: absolute;
|
||||||
|
padding: 5px;
|
||||||
|
bottom: -50px;
|
||||||
|
left: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen .flexbox:last-of-type .bg-danger {
|
||||||
|
background: rgba(255,255,255,.25) !important;
|
||||||
|
color: #fff!important;
|
||||||
|
border: 0!important;
|
||||||
|
height: auto;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 100px;
|
||||||
|
height: 80px!important;
|
||||||
|
width: 80px!important;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox:last-of-type {
|
||||||
|
padding: 0!important;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translateX(calc(-50% - 10px));
|
||||||
|
transform: translateX(calc(-50% - 10px));
|
||||||
|
}
|
||||||
|
.hvr-wobble-bottom:active, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:hover {
|
||||||
|
-webkit-transform: scale(1.1) !important;
|
||||||
|
transform: scale(1.1) !important;
|
||||||
|
-webkit-animation-name: none;
|
||||||
|
animation-name: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
.hvr-wobble-bottom {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
-webkit-transform: perspective(1px) translateZ(0);
|
||||||
|
transform: perspective(1px) translateZ(0);
|
||||||
|
box-shadow: 0 0 1px rgba(0,0,0,0);
|
||||||
|
-webkit-transition-duration: .3s;
|
||||||
|
transition-duration: .3s;
|
||||||
|
-webkit-transition-property: transform;
|
||||||
|
transition-property: transform;
|
||||||
|
-webkit-transform-origin: center;
|
||||||
|
transform-origin: center;
|
||||||
|
height: 130px;
|
||||||
|
}
|
||||||
|
.splash-badge {
|
||||||
|
color: #fff;
|
||||||
|
background: #cc7b19;
|
||||||
|
width: 80px!important;
|
||||||
|
height: 80px;
|
||||||
|
font-size: 60px;
|
||||||
|
border-radius: 1000px;
|
||||||
|
}
|
||||||
|
.splash-badge i {
|
||||||
|
position: absolute;
|
||||||
|
left: 15px;
|
||||||
|
}
|
||||||
|
.splash-badge i.fa-home:before {
|
||||||
|
position: absolute !important;
|
||||||
|
left: -2px !important;
|
||||||
}
|
}
|
||||||
@ -30,7 +30,7 @@
|
|||||||
.panel .panel-heading .panel-title {
|
.panel .panel-heading .panel-title {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
.text-dark, .drop-title, .tabs-style-flip nav a, .text-info, .text-dark .bg-title .breadcrumb a, .daterangepicker .input-mini, .dd-handle, .dd3-content, .dropify-wrapper, .form-control, .panel-default .panel-heading, .panel-white .panel-heading, .select2-container .select2-choice, .steamline .sl-right div>a, .white-box .box-title, a.list-group-item, button.list-group-item, h1, h2, h3, h4, h5, h6, .panel-default .panel-body, .panel-white .panel-body {
|
.dataTables_wrapper, .dataTables_info, .text-dark, .drop-title, .tabs-style-flip nav a, .text-info, .text-dark .bg-title .breadcrumb a, .daterangepicker .input-mini, .dd-handle, .dd3-content, .dropify-wrapper, .form-control, .panel-default .panel-heading, .panel-white .panel-heading, .select2-container .select2-choice, .steamline .sl-right div>a, .white-box .box-title, a.list-group-item, button.list-group-item, h1, h2, h3, h4, h5, h6, .panel-default .panel-body, .panel-white .panel-body {
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
@ -106,7 +106,7 @@
|
|||||||
.bg-title {
|
.bg-title {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
.content-wrap, .bg-org {
|
.content-wrap {
|
||||||
background: var(--main-bg-color) !important;
|
background: var(--main-bg-color) !important;
|
||||||
}
|
}
|
||||||
.panel-blue .panel-heading, .panel-info .panel-heading {
|
.panel-blue .panel-heading, .panel-info .panel-heading {
|
||||||
@ -123,7 +123,21 @@
|
|||||||
.nav-tabs>li>a:hover {
|
.nav-tabs>li>a:hover {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
|
.bg-org {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
.tab-content>.active {
|
||||||
|
display: block;
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
|
.fade {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
|
/* error page */
|
||||||
|
.error-box {
|
||||||
|
top: 10%;
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
}
|
||||||
/* Settings - menu tabs */
|
/* Settings - menu tabs */
|
||||||
.sttabs nav {
|
.sttabs nav {
|
||||||
background: rgba(0, 0, 0, 0.15);
|
background: rgba(0, 0, 0, 0.15);
|
||||||
@ -163,12 +177,15 @@
|
|||||||
.table-hover>tbody>tr:hover, .table-striped>tbody>tr:nth-of-type(odd), .table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
|
.table-hover>tbody>tr:hover, .table-striped>tbody>tr:nth-of-type(odd), .table>tbody>tr.active>td, .table>tbody>tr.active>th, .table>tbody>tr>td.active, .table>tbody>tr>th.active, .table>tfoot>tr.active>td, .table>tfoot>tr.active>th, .table>tfoot>tr>td.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active {
|
||||||
background-color: rgba(0, 0, 0, 0.15)!important;
|
background-color: rgba(0, 0, 0, 0.15)!important;
|
||||||
}
|
}
|
||||||
|
.table-hover>tbody>tr:hover {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
/* Settings - popup modal */
|
/* Settings - popup modal */
|
||||||
.white-popup .panel-heading, .white-popup>.col-md-6>.white-box:first-child {
|
.white-popup .panel-heading, .white-popup>.col-md-6>.white-box:first-child {
|
||||||
background: var(--modal-bg-color)!important;
|
background: var(--main-bg-color)!important;
|
||||||
}
|
}
|
||||||
.white-popup .panel-body, .white-popup>.col-md-6>.white-box:nth-child(2) {
|
.white-popup .panel-body, .white-popup>.col-md-6>.white-box:nth-child(2) {
|
||||||
background: var(--modal-bg-color) !important;
|
background: var(--main-bg-color) !important;
|
||||||
}
|
}
|
||||||
.panel-blue a:hover, .panel-info a:hover {
|
.panel-blue a:hover, .panel-info a:hover {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
@ -195,6 +212,40 @@
|
|||||||
background-color: #1b1a1a;
|
background-color: #1b1a1a;
|
||||||
border-color: #1b1a1a;
|
border-color: #1b1a1a;
|
||||||
}
|
}
|
||||||
|
/* Settings logs */
|
||||||
|
|
||||||
|
.table-striped>tbody>tr:nth-of-type(odd) {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
|
.table-striped>tbody>tr:nth-of-type(odd):hover {
|
||||||
|
background: rgba(0,0,0,.25)!important;
|
||||||
|
}
|
||||||
|
table.dataTable>tbody>tr:nth-of-type(even) {
|
||||||
|
background: rgba(0,0,0,.15)!important;
|
||||||
|
}
|
||||||
|
table.dataTable>tbody>tr:nth-of-type(even):hover {
|
||||||
|
background: rgba(0,0,0,.25)!important;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
||||||
|
background: rgba(0,0,0,.08)!important;
|
||||||
|
color: var(--link-color) !important;
|
||||||
|
border: 0!important;
|
||||||
|
border-radius: 0!important;
|
||||||
|
margin: 0!important;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||||
|
background: rgba(0,0,0,.15);
|
||||||
|
color: rgba(255,255,255,.7)!important;
|
||||||
|
border: 0!important;
|
||||||
|
border-radius: 0!important;
|
||||||
|
margin: 0!important;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
.dataTables_wrapper .dataTables_paginate .paginate_button:hover, .nav-tabs li a:focus, .nav-tabs li a:hover {
|
||||||
|
background: rgba(255,255,255,.08)!important;
|
||||||
|
color: #eee!important;
|
||||||
|
}
|
||||||
/* Settings - custom CSS */
|
/* Settings - custom CSS */
|
||||||
.ace-idle-fingers {
|
.ace-idle-fingers {
|
||||||
background-color: rgba(0, 0, 0, 0.15) !important;
|
background-color: rgba(0, 0, 0, 0.15) !important;
|
||||||
@ -377,4 +428,123 @@
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 250px;
|
max-height: 250px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
}
|
||||||
|
.login-register .login-box .white-box .bg-org {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
/* Splash screen */
|
||||||
|
.p-20 {
|
||||||
|
padding: 0px!important;
|
||||||
|
}
|
||||||
|
#splashScreen, .lock-screen {
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
#splashScreen div[id^=menu-] {
|
||||||
|
max-width: 88px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: auto;
|
||||||
|
margin-left: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
#splashScreen .flexbox:first-of-type {
|
||||||
|
width: 600px!important;
|
||||||
|
margin-top: 0px!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen div[id^=menu-] {
|
||||||
|
background: transparent;
|
||||||
|
border-radius: 3px;
|
||||||
|
max-width: 100px;
|
||||||
|
height: 155px;
|
||||||
|
margin: 24px 20px 0 0!important;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
#splashScreen .bg-org.fc-event {
|
||||||
|
background-color: transparent !important;
|
||||||
|
border-radius: 1000px;
|
||||||
|
height: 80px!important;
|
||||||
|
width: 80px!important;
|
||||||
|
margin: 25px auto 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen .homepage-text {
|
||||||
|
width: 120px;
|
||||||
|
background: transparent;
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0;
|
||||||
|
position: absolute;
|
||||||
|
padding: 5px;
|
||||||
|
bottom: -50px;
|
||||||
|
left: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#splashScreen .flexbox:last-of-type .bg-danger {
|
||||||
|
background: rgba(255,255,255,.25) !important;
|
||||||
|
color: #fff!important;
|
||||||
|
border: 0!important;
|
||||||
|
height: auto;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 100px;
|
||||||
|
height: 80px!important;
|
||||||
|
width: 80px!important;
|
||||||
|
}
|
||||||
|
#splashScreen .flexbox:last-of-type {
|
||||||
|
padding: 0!important;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translateX(calc(-50% - 10px));
|
||||||
|
transform: translateX(calc(-50% - 10px));
|
||||||
|
}
|
||||||
|
.hvr-wobble-bottom:active, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:hover {
|
||||||
|
-webkit-transform: scale(1.1) !important;
|
||||||
|
transform: scale(1.1) !important;
|
||||||
|
-webkit-animation-name: none;
|
||||||
|
animation-name: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
.hvr-wobble-bottom {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
-webkit-transform: perspective(1px) translateZ(0);
|
||||||
|
transform: perspective(1px) translateZ(0);
|
||||||
|
box-shadow: 0 0 1px rgba(0,0,0,0);
|
||||||
|
-webkit-transition-duration: .3s;
|
||||||
|
transition-duration: .3s;
|
||||||
|
-webkit-transition-property: transform;
|
||||||
|
transition-property: transform;
|
||||||
|
-webkit-transform-origin: center;
|
||||||
|
transform-origin: center;
|
||||||
|
height: 130px;
|
||||||
|
}
|
||||||
|
.splash-badge {
|
||||||
|
color: #fff;
|
||||||
|
background: #cc7b19;
|
||||||
|
width: 80px!important;
|
||||||
|
height: 80px;
|
||||||
|
font-size: 60px;
|
||||||
|
border-radius: 1000px;
|
||||||
|
}
|
||||||
|
.splash-badge i {
|
||||||
|
position: absolute;
|
||||||
|
left: 15px;
|
||||||
|
}
|
||||||
|
.splash-badge i.fa-home:before {
|
||||||
|
position: absolute !important;
|
||||||
|
left: -2px !important;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user