Newer
Older
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
html {
font-size: 11pt;
background-color: #FFFFFF;
}
body {
padding-bottom: 50px;
}
.cursor-pointer {
cursor: pointer;
}
a {
cursor: pointer;
&:hover {
text-decoration: none;
}
}
.processing {
background-image: url('../assets/loader.gif');
background-repeat: no-repeat;
background-position: right;
display: inline-block;
width: 1rem;
height: 1rem;
}
input, select, textarea {
&.valid {
border-left: 5px solid #42A948; /* green */
}
&.invalid {
border-left: 5px solid #a94442; /* red */
}
}
.text-monospace {
font-family:monospace;
}
.text-bold {
font-weight: bold;
}
label.mandatory:after {
content: '*';
color: #FF0000;
}
span.fa-spinner.animate {
animation: spin 4s linear infinite;
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
}