45 lines
1.3 KiB
Plaintext
Raw Normal View History

@import (reference) "./colortheme-all.less";
2018-03-02 18:33:43 +01:00
.help_main (@color, @bg-color) {
2018-07-14 15:15:23 +02:00
--LessLoader_require: LessLoader_currentFile();
--help-bg-color-l15: lighten(@bg-color, 15%);
--help-bg-color-spin: spin(@bg-color, 180);
--help-bg-color-spin-d10: darken(spin(@bg-color, 180), 10%);
--help-bg-color-spin-l10: lighten(spin(@bg-color, 180), 10%);
}
& {
2018-03-02 18:33:43 +01:00
.cp-help-container {
position: relative;
2018-07-14 15:15:23 +02:00
background-color: var(--help-bg-color-l15);
2018-03-02 18:33:43 +01:00
&.cp-help-hidden {
display: none;
}
.cp-help-close {
position: absolute;
top: 5px;
right: 5px;
}
.cp-help-text {
2018-07-14 15:15:23 +02:00
color: contrast(var(--help-bg-color-l15), #fff, #000); //@color;
2018-03-02 18:33:43 +01:00
margin: 0;
padding: 15px;
2018-03-08 16:15:26 +01:00
a {
2018-03-09 12:12:47 +01:00
//color: darken(@colortheme_link-color, 30%);
2018-07-14 15:15:23 +02:00
color: contrast(var(--help-bg-color-l15), var(--help-bg-color-spin-l10), var(--help-bg-color-spin-d10));
//color: darken(spin(var(--help-bg-color-l15), 180), 10%);
2018-03-08 16:15:26 +01:00
}
2018-03-02 18:33:43 +01:00
h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
ul, ol, p { margin: 0; }
}
}
2018-07-14 15:15:23 +02:00
}