Ich Ich, gros commit
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
|
||||
// Body
|
||||
$body-bg: #343a40;
|
||||
$body-text-bg: #a3b3c6;
|
||||
$body-light-bg: #E2E7ED;
|
||||
|
||||
// Typography
|
||||
$font-family-sans-serif: "Nunito", sans-serif;
|
||||
@ -18,6 +20,7 @@ $yellow: #ffed4a;
|
||||
$green: #38c172;
|
||||
$teal: #4dc0b5;
|
||||
$cyan: #6cb2eb;
|
||||
$black: #111;
|
||||
|
||||
// Card
|
||||
$card-border-width: 4px;
|
||||
|
@ -4,6 +4,10 @@
|
||||
@import 'variables';
|
||||
// Bootstrap
|
||||
@import '~bootstrap/scss/bootstrap';
|
||||
//Datatables
|
||||
@import '~datatables.net-bs4/css/dataTables.bootstrap4.min.css';
|
||||
//DatePicker
|
||||
@import '~tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css';
|
||||
|
||||
.navbar-laravel {
|
||||
background-color: #fff;
|
||||
@ -19,16 +23,21 @@ $card-border-width: 4px;
|
||||
$card-border-radius: .3rem;
|
||||
$card-border-color: rgba(255, 242, 242, .3);
|
||||
|
||||
//MainNavbar
|
||||
#mainNav {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
//Sidebar
|
||||
/* The side navigation menu */
|
||||
.sidenav {
|
||||
height: 100%; /* 100% Full-height */
|
||||
width: 90px; /* 0 width - change this with JavaScript */
|
||||
position: fixed; /* Stay in place */
|
||||
z-index: 1; /* Stay on top */
|
||||
z-index: 1000; /* Stay on top */
|
||||
top: 0; /* Stay at the top */
|
||||
left: 0;
|
||||
background-color: #111; /* Black*/
|
||||
background-color: $black; /* Black*/
|
||||
overflow-x: hidden; /* Disable horizontal scroll */
|
||||
padding-top: 60px; /* Place content 60px from the top */
|
||||
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
|
||||
@ -37,10 +46,12 @@ $card-border-color: rgba(255, 242, 242, .3);
|
||||
.closed > a > span {
|
||||
display: none;
|
||||
}
|
||||
.opened a.openbtn {
|
||||
|
||||
.opened .openbtn {
|
||||
display: none;
|
||||
}
|
||||
.closed a.closebtn {
|
||||
|
||||
.closed .closebtn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@ -52,6 +63,7 @@ $card-border-color: rgba(255, 242, 242, .3);
|
||||
color: #818181;
|
||||
display: block;
|
||||
transition: 0.3s;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* When you mouse over the navigation links, change their color */
|
||||
@ -67,6 +79,7 @@ $card-border-color: rgba(255, 242, 242, .3);
|
||||
font-size: 36px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.sidenav .openbtn {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
@ -75,6 +88,10 @@ $card-border-color: rgba(255, 242, 242, .3);
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.sidenav a.active {
|
||||
color: #f1f1f1 !important;
|
||||
}
|
||||
|
||||
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
|
||||
#main {
|
||||
transition: margin-left .5s;
|
||||
@ -90,4 +107,59 @@ $card-border-color: rgba(255, 242, 242, .3);
|
||||
.sidenav a {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//BOuton de selection du karting
|
||||
.btn {
|
||||
border-color:$body-light-bg;
|
||||
padding: 0.35rem 1.5rem;
|
||||
color: $body-text-bg!important;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.dropdown-menu{
|
||||
top: 100%;
|
||||
text-align: left;
|
||||
display: none;
|
||||
position: absolute;
|
||||
z-index: 101;
|
||||
padding-top: 0;
|
||||
width: 245px;
|
||||
border-radius: 4px;
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
border-color: $body-light-bg;
|
||||
color: $body-bg!important;
|
||||
}
|
||||
.dropdown-item:hover{
|
||||
cursor: pointer;
|
||||
color: $body-bg!important;
|
||||
}
|
||||
|
||||
.textarea-form {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
//Widgets Admin
|
||||
.widget-thumb {
|
||||
padding: 20px 10px 20px 10px;
|
||||
border-radius: 4px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.widget-thumb:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.widget-thumb-red {
|
||||
background-color: #E7505A !important;
|
||||
}
|
||||
|
||||
.widget-thumb-blue {
|
||||
background-color: #0076A8 !important;
|
||||
}
|
||||
|
0
resources/sass/metronic.scss
Executable file
0
resources/sass/metronic.scss
Executable file
Reference in New Issue
Block a user