45 lines
784 B
Plaintext
Executable File
45 lines
784 B
Plaintext
Executable File
//
|
|
// Sharing box
|
|
// --------------------------------------------------
|
|
|
|
// Module color variable
|
|
@share-color: mix(@brand-primary, @inverse, 8%);
|
|
|
|
.share {
|
|
background-color: @share-color;
|
|
position: relative;
|
|
border-radius: @border-radius-large;
|
|
.dropdown-arrow(@share-color, -9px, 23px);
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 15px;
|
|
}
|
|
li {
|
|
font-size: @component-font-size-base;
|
|
line-height: 1.4;
|
|
padding-top: 11px;
|
|
.clearfix();
|
|
|
|
&:first-child {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
.toggle {
|
|
float: right;
|
|
margin: 0;
|
|
}
|
|
.btn {
|
|
border-radius: 0 0 @border-radius-large @border-radius-large;
|
|
}
|
|
}
|
|
|
|
.share-label {
|
|
float: left;
|
|
font-size: 15px;
|
|
line-height: 1.4;
|
|
padding-top: 5px;
|
|
width: 50%;
|
|
}
|