mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-06 14:54:57 +00:00
add sass/scratch.scss and associated sass files
This commit is contained in:
48
Resources/public/sass/modules/_tabs.scss
Normal file
48
Resources/public/sass/modules/_tabs.scss
Normal file
@@ -0,0 +1,48 @@
|
||||
/* Tabs */
|
||||
$navigation-color: $red;
|
||||
$gutter : 4;
|
||||
$norm: 5;
|
||||
$body-font-color: $white;
|
||||
$default-color: $green;
|
||||
$global-bg-color: $yellow;
|
||||
|
||||
.tab-nav {
|
||||
margin: 0.5em 0;
|
||||
padding: 0;
|
||||
|
||||
> li {
|
||||
font-family: $tabs-nav-font-family;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
cursor: default;
|
||||
@include border-top-radius($base-border-radius);
|
||||
@include border-bottom-radius($base-border-radius);
|
||||
margin-bottom: $tabs-nav-margin-bottom;
|
||||
|
||||
&.title {
|
||||
padding: $tabs-nav-title-padding;
|
||||
font-weight: 900;
|
||||
background-color: $tabs-nav-title-bg-color;
|
||||
color: $tabs-nav-title-text-color;
|
||||
}
|
||||
|
||||
> a {
|
||||
display: block;
|
||||
width: auto;
|
||||
padding: $tabs-nav-padding;
|
||||
margin: 0;
|
||||
color: $tabs-nav-text-color;
|
||||
cursor: pointer;
|
||||
border: $tabs-new-border;
|
||||
background-color: $tabs-nav-bg-color;
|
||||
@include border-top-radius($base-border-radius);
|
||||
@include border-bottom-radius($base-border-radius);
|
||||
|
||||
&:hover, &:active {
|
||||
border: $tabs-nav-hover-border;
|
||||
color: $tabs-nav-hover-text-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user