You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
704 B
Plaintext
33 lines
704 B
Plaintext
7 years ago
|
@import (once) "./colortheme-all.less";
|
||
|
|
||
|
.help_main (@color, @bg-color) {
|
||
|
.cp-help-container {
|
||
|
position: relative;
|
||
|
background-color: lighten(@bg-color, 15%);
|
||
|
&.cp-help-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.cp-help-close {
|
||
|
position: absolute;
|
||
|
top: 5px;
|
||
|
right: 5px;
|
||
|
}
|
||
|
.cp-help-text {
|
||
|
color: @color;
|
||
|
margin: 0;
|
||
|
padding: 15px;
|
||
|
h1 {
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
h2 {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
h3 {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
ul, ol, p { margin: 0; }
|
||
|
}
|
||
|
}
|
||
|
}
|