-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (67 loc) · 1.2 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
html, body, #map {
height: 100%;
width: 100%;
}
#corner {
width: 300px;
text-align: center;
background-color: rgba(128, 138, 162, 0.8);
position:absolute;
top:20px;
right:20px;
padding: 8px;
border-radius: 2px;
}
p {
font-family: 'Open Sans Condensed', sans-serif;
}
#corner p {
margin-bottom: 8px;
font-size:90%;
color: white;
}
#corner h1 {
font-weight: bold;
margin-bottom: 5px;
font-family: 'Open Sans Condensed', sans-serif;
font-size:90%;
color: white;
}
#corner input {
float: right;
}
select {
float: left;
margin-right: 2px;
}
#corner input, select {
background-color: white;
border: none;
color: #263248;
padding: 3px;
border-radius: 2px;
}
#corner input:hover, select:hover {
background-color: #E0EEEE;
cursor: pointer;
transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
}
#footer {
width: 100%;
padding: 5px;
font-family: 'Open Sans Condensed', sans-serif;
background-color: black;
text-align: center;
font-size: 12px;
color: white;
}
h2 {
font-weight: bold;
}
a {
font-family: 'Open Sans Condensed', sans-serif;
color: white;
}