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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
.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;
}
#review-completion-form #edit-missed-chapter-wrapper,
#review-completion-form #edit-missed-example-wrapper {
display: inline-block;
margin-right: 25px;
}
#review-completion-form #more,
#review-completion-form #missed-list {
display: none;
}
.review-links {
margin: 0 10px;
padding: 2px 5px;
color: #333333;
border: 1px solid #333333;
-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;
}
.review-links:hover {
color: #ffffff;
background: #333333;
}
.review-links.active{
background: #333333;
color: #ffffff;
}
.well {
min-height: 20px;
color: #333333;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
overflow-x: auto;
}
#timer {
display: inline-block;
border: 2px solid #333333;
color: #424242;
padding: 5px;
float: right;
margin-top: -20px;
}
#example-name {
margin-bottom: 10px;
padding: 5px;
background: #f5f5f5;
display: inline-block;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
|