-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (82 loc) · 1.4 KB
/
style.css
File metadata and controls
98 lines (82 loc) · 1.4 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
body {
font-family: 'Raleway', sans-serif;
}
#header {
background-color: steelblue;
color: white;
font-size: 1em;
top: 0;
left: 0;
padding: 5px;
margin: -1%;
}
#header ul {
list-style-type: none;
}
#header ul li {
display: inline;
padding: 5px;
}
#header a {
text-decoration: none;
color: white;
}
#header a:hover {
color: lightgray;
}
h1 {
font-weight: normal;
}
h1, h4, p {
text-align: center;
}
h1 + p {
margin-top: -1%;
}
input, #full_results {
border: 1px solid gainsboro;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
input[type=text] {
width: 350px;
height: 35px;
font-size: .9em;
}
input[type=submit], #full_results {
color: white;
background-color: steelblue;
border-color: steelblue;
font-weight: bold;
width: 100px;
height: 35px;
font-size: .9em;
}
#d3-dpla, #message, #hide {
margin-bottom: 15px;
float: left;
position: relative;
}
#message {
padding-left: 5%;
font-weight: bold;
font-size: 1.1em;
font-family: Arial, sans-serif;
}
.hide {
display: none;
}
div.tooltip {
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 5px;
fill: black;
font: 12px Ralway,sans-serif;
background: gainsboro;
border: 0px;
border-radius: 8px;
pointer-events: none;
}