blob: 169ddc477c5bea702df73b6bb298efbe85c543d1 (
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
50
51
52
53
54
55
56
57
|
.clearfix {
clear: both;
}
.form-radios .form-item {
display:inline;
}
#comment-form-wrapper #edit-chapter-wrapper,
#comment-form-wrapper #edit-example-wrapper,
#comment-form-wrapper #edit-submit,
#comment-form-wrapper #comment-error-wrapper,
#ajax-loader {
display: none;
}
.status {
padding: 5px;
background: lightgreen;
border: 2px solid green;
}
#lightbox-wrapper {
background: #ffffff;
padding: 25px;
}
#lightbox-wrapper table tr {
border-bottom: 1px solid #cccccc;
padding: 10px 0;
}
#lightbox-wrapper table tr:hover {
background: #f3f3f3;
}
.error-comment {
background: tomato !important;
}
.dull {
background: #424242 !important;
}
.toggle-hide-show {
float: right;
padding: 5px 7px;
font-size: 0.8em;
border: 2px solid #424242;
-webkit-transition: background-color .5s ease-out 0s;
-moz-transition: background-color .5s ease-out 0s;
-o-transition: background-color .5s ease-out 0s;
transition: background-color .5s ease-out 0s;
-webkit-transition: color .5s ease-out .1s;
-moz-transition: color .5s ease-out .1s;
-o-transition: color .5s ease-out .1s;
transition: color .5s ease-out .1s;
font-weight: bold;
}
.toggle-hide-show:hover {
cursor: pointer;
background: #424242;
color: #ffffff;
font-weight: bold;
}
|