-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
175 lines (162 loc) · 3.19 KB
/
style.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
body {
font-family: "dejavu sans","arial",sans-Serif;
font-size: 100%;
line-height: 1.3em;
margin: auto;
padding: 5px;
width: 800px;
background: #FFFFFF;
text-align: justify;
}
div.header{
position: relative;
background-size: cover;
background-position: center center;
margin: 2px 0px 2px 0px;
width: 100%;
height: 200px;
box-shadow: 0px 0px 5px 5px #F2E8DF inset;
}
div.header-loop{
position: relative;
background-size: cover;
background-position: center center;
margin: 2px 0px 2px 0px;
width: 100%;
height: 200px;
box-shadow: 0px 0px 5px 5px #F2E8DF inset;
-webkit-animation: loading 45s infinite linear;
-moz-animation: loading 45s infinite linear;
-ms-animation: loading 45s infinite linear;
-o-animation: loading 45s infinite linear;
animation: loading 45s infinite linear;
}
h1.header-title{
font-style: italic;
margin: 0px;
position: absolute;
bottom: 20px;
right: 20px;
background: lightgrey;
border-radius: 5px;
padding: 5px;
}
h2.header-title{
margin-top: 10px;
padding: 5px;
}
div.footer{
width: 100%;
text-align: center;
padding-bottom: 20px;
}
div.main{
background: #F2E8DF;
box-shadow: 0 0 15px 10px #F2E8DF;
}
div.content{
padding: 0px 5px 0px 5px;
}
img.index-row{
padding-top: 10px;
}
img.index-row-image{
width: 40px;
height: 50px;
}
table.infobox{
float: right;
width: 200px;
border: 1px solid grey;
border-radius: 5px;
background: #FFE5B4;
margin-left: 15px;
box-shadow: 0px 0px 5px 5px #000000 outset;
}
td.infobox-image{
text-align: center;
padding-top: 5px;
}
td.infobox-field{
text-align: right;
}
td.infobox-description{
text-align: center;
}
input[type=text] {
width: 350px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('images/searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}
input[type=text]:focus {
width: 450px;
}
div.search-result{
background-color: white;
width: 100%;
height: 60px;
border-bottom: 1px solid grey;
padding: 2px;
}
img.search-result-image{
width: 40px;
height: 50px;
}
.ui-autocomplete { width: 10%; height: auto; max-height: 300px; overflow-y: scroll; overflow-x: hidden;}
a:link, a:visited{
text-decoration: none;
color: #013ADF;
}
a:hover, a:active{
text-decoration: underline;
color: #013ADF;
}
@keyframes "loading" {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
@-moz-keyframes loading {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
@-webkit-keyframes "loading" {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
@-ms-keyframes "loading" {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
@-o-keyframes "loading" {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}