mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
66 lines
No EOL
1.3 KiB
Text
66 lines
No EOL
1.3 KiB
Text
// Selection
|
|
// --------------------------------------------------
|
|
|
|
::-moz-selection {
|
|
background-color: lighten(@base-color, 65%);
|
|
color: @base-color;
|
|
text-shadow: none;
|
|
}
|
|
::selection {
|
|
background-color: lighten(@base-color, 65%);
|
|
color: @base-color;
|
|
text-shadow: none;
|
|
}
|
|
|
|
// Webkit Custom Scrollbar
|
|
// --------------------------------------------------
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 6px fade(@black,30);
|
|
-webkit-border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
-webkit-border-radius: 10px;
|
|
border-radius: 10px;
|
|
background: rgba(0,0,0,0.5);
|
|
}
|
|
::-webkit-scrollbar-thumb:window-inactive {
|
|
background: rgba(0,0,0,0.2);
|
|
}
|
|
|
|
// Global Classes
|
|
// --------------------------------------------------
|
|
|
|
.wrap {
|
|
margin: 0 auto;
|
|
}
|
|
.all-caps {
|
|
text-transform: uppercase;
|
|
}
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
.pull-right {
|
|
float:right;
|
|
}
|
|
.unstyled-list {
|
|
list-style: none;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
li {
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
|
|
// Global Transition
|
|
// ---------------------------------------------------
|
|
|
|
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a {
|
|
.transition(all .2s ease);
|
|
} |