blob: a6f8a4557c546e6ff427bbe64da2c63906ba3e87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
.book .book-body .page-wrapper .page-inner {
section.exercise {
padding: 0px;
margin: 20px 15px;
border: 3px solid #2f8cde;
.header {
padding: 5px 15px;
color: #fff;
background: #2f8cde;
h2 {
margin: 0px;
font-size: 20px;
}
}
.message {
margin: 5px 15px;
}
.editor {
min-height: 50px;
font-size: 14px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.alert {
display: none;
margin: 0px;
margin-bottom: 10px;
padding: 8px 15px;
}
&.return-error {
.alert-danger {
display: block;
}
}
&.return-success {
.alert-success {
display: block;
}
}
}
}
|