blob: 7fc07825bc08db5d1bc501bea9d0b6508275768a [file] [log] [blame]
Radek Krejci7ddaf932018-01-26 10:53:57 +01001@import "./colors";
2
Radek Krejcicd1ebe12018-01-11 11:34:17 +01003$colorSuccess: #def2de;
4$colorSuccessBorder: green;
5$colorFailure: #f2dede;
6$colorFailureBorder: red;
7
8a:not([href]) {
9 cursor: pointer;
10 text-decoration: underline;
11 font-weight: bold;
12}
13
14.netopeer-content {
15 display: block;
16 padding: 0.7em 1em 1em 2em;
Radek Krejci7ddaf932018-01-26 10:53:57 +010017 background-color: $colorBackground;
18 color: $black;
Radek Krejcicd1ebe12018-01-11 11:34:17 +010019}
20
21.msg-rounded {
22 border-radius: 5px;
23}
24
25.msg-close {
26 padding-right: 10px;
27 padding-left: 10px;
28 font-weight: bold;
29 font-family: monospace;
30 font-size: large;
31 cursor: pointer;
32 height: 1em;
33}
34
35.msg-success {
36 background-color: $colorSuccess;
Radek Krejci7ddaf932018-01-26 10:53:57 +010037 color: $colorSuccessBorder;
Radek Krejcicd1ebe12018-01-11 11:34:17 +010038 padding: 5px 1em 5px 0em;
39
40 .msg-close {
41 color: $colorSuccessBorder;
42 }
43}
44
45.msg-failure {
46 background-color: $colorFailure;
Radek Krejci7ddaf932018-01-26 10:53:57 +010047 color: colorFailureBorder;
Radek Krejcicd1ebe12018-01-11 11:34:17 +010048 padding: 5px 1em 5px 0em;
49
50 .msg-close {
51 color: $colorFailureBorder;
52 }
53}