pulsar/static/text.less

40 lines
586 B
Plaintext
Raw Normal View History

2015-05-29 20:38:37 +03:00
@import "ui-variables";
.text-bits (@type) {
2015-05-29 23:21:45 +03:00
@text-color-name: "text-color-@{type}";
@bg-color-name: "background-color-@{type}";
@text-color: @@text-color-name;
@bg-color: @@bg-color-name;
code {
2015-05-29 23:21:45 +03:00
color: @text-color;
background: fadeout(@bg-color, 80%);
}
a, a code {
text-decoration: underline;
2015-05-29 23:21:45 +03:00
color: darken(@text-color, 10%);
&:hover {
2015-05-29 23:21:45 +03:00
color: darken(@text-color, 15%);
}
}
}
.text-info {
.text-bits(info);
}
.text-success {
.text-bits(success);
}
.text-warning {
.text-bits(warning);
}
.text-error {
.text-bits(error);
}