-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
108 lines (76 loc) · 1.5 KB
/
layout.css
File metadata and controls
108 lines (76 loc) · 1.5 KB
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
/*
Stylesheet for Metadata Proxy
Author : Kathrin Heim
*/
body {
width: 980px;
margin: auto;
background-color: lightgray;
font-family: Georgia;
text-align: center;
}
.logo {
background-image: url("https://www.oclc.org/content/dam/oclc/logos/worldcat/worldcat-logo.png");
background-repeat: no-repeat;
background-position: right top;
background-color: #66bfa1;
background-size: 80px;
height: 80px;
}
.pagetitle {
font-family: Century Gothic,sans-serif;
font-size: 3em;
padding-top: 10px
}
.output, #myForm {
min-height: 50px;
margin: 15px 0px;
padding: 15px;
background-color: white;
overflow-y: auto;
}
.output {
visibility: hidden;
position: relative;
text-align: left;
}
.output, .legend, footer {
font-style: italic;
font-size: smaller;
}
.output:hover, #myForm:hover {
box-shadow: 5px 5px 7px grey;
}
.isbn, .title, .author, .year, .publisher, .city {
font-weight: bold;
padding: .2em .2em;
font-size:initial;
font-style: normal;
}
.record {
font-style: normal;
}
.mediatype {
position: absolute;
top: 50px;
right: 15px;
}
input {
padding: .2em .2em;
height: 40px;
}
#submitbutton {
background-color: #66bfa1;
box-shadow: 5px 5px 7px grey;
font-weight: bold;
height: 50px;
}
footer {
border-top: dotted black 3px;
padding: 5px;
margin-top: 10px;
}
.error {
color: darkred;
padding: 5px;
}