-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.css
111 lines (89 loc) · 1.64 KB
/
app.css
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
body {
margin: 3%;
height: 70%;
}
.greyfield, .sectionTable th {
text-align: center;
width: 100%;
}
input.dsTitle {
width: 100%;
}
table.formSection, table.sectionTable {
width: 100%;
table-layout: fixed;
border-collapse: separate;
border-spacing: 0px 1px;
}
.sectionTable th, .sectionTable td {
font-size: 14;
padding: 0.3em !important;
vertical-align: middle !important;
border: 1px solid #000;
}
.no-border {
border: 0px solid #000 !important;
}
span {
vertical-align: middle;
line-height: 100%;
}
.row {
margin-right: 0px;
margin-left: 0px;
}
.hidden {
display: none;
}
table.sectionTable > tbody > tr > th:not(.no-border) {
background-color: #C8DCEB;
-webkit-print-color-adjust: exact;
background-image:url("img/header.png") !important;
background-repeat:repeat;
line-height: 1.5em;
}
#homeBtn {
float: right;
}
#mainMenu {
background-color: #FFF0F0;
}
.loading-icon {
animation: spin infinite linear 2s;
-webkit-animation: spin infinite linear 2s;
}
@keyframes spin {
0% {
transform:rotate(0deg);
-webkit-transform:rotate(0deg);
}
100% {
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
}
}
@-webkit-keyframes spin {
0% {
transform:rotate(0deg);
-webkit-transform:rotate(0deg);
}
100% {
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
}
}
@media print {
body {
margin: 0%;
}
table.sectionTable > tbody > tr > th:not(.no-border) {
background-color: #C8DCEB;
-webkit-print-color-adjust: exact;
background-image:url("img/header.png") !important;
background-repeat:repeat;
line-height: 1.5em;
}
input.dsTitle {
border: 0px;
}
}