This repository was archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (107 loc) · 2.09 KB
/
style.css
File metadata and controls
107 lines (107 loc) · 2.09 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
104
105
106
107
@font-face {
font-family: 'Myriad Pro';
src: url('fonts/myriad-set-pro_text.woff') format('woff');
}
@font-face {
font-family: 'Myriad Pro Bold';
src: url('fonts/myriad-set-pro_bold.woff') format('woff');
}
@font-face {
font-family: 'Myriad Pro SemiBold';
src: url('fonts/myriad-set-pro_semibold.woff') format('woff');
}
@font-face {
font-family: 'Myriad Pro Thin';
src: url('fonts/myriad-set-pro_thin.woff') format('woff');
}
.regular {
font-family: 'Myriad Pro', sans-serif;
}
.bold {
font-family: 'Myriad Pro Bold', sans-serif;
}
.semibold {
font-family: 'Myriad Pro SemiBold', sans-serif;
}
.thin {
font-family: 'Myriad Pro Thin', sans-serif;
}
* {
font-family: 'Myriad Pro', sans-serif;
}
#map {
height: 100vh;
width: 100%;
top: 0;
left: 0;
position: absolute;
}
.github {
z-index: 99;
position: absolute;
right: 10px;
font-weight: 500;
font-size: 9px;
}
#github-light {
z-index: 99;
position: absolute;
right: 10px;
font-weight: 500;
font-size: 9px;
color: rgba(255, 255, 255, 0.9);
text-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 0 10px #000000;
}
#github-dark {
z-index: 99;
position: absolute;
right: 10px;
font-weight: 500;
font-size: 9px;
color: rgba(0, 0, 0, 0.7);
text-shadow: 0 0 1px rgba(255, 255, 255, 0.85);
}
#searchBox {
border: 0.5px solid rgba(0, 0, 0, 0.3);
width: 100%;
margin: auto;
background-color: white;
position: relative;
top: 0;
left: 0;
z-index: 999;
padding: 3px 5px 3px 5px;
border-radius: 4px;
}
.searchbox-light {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
}
.searchbox-dark {
box-shadow: 0 0 1px rgba(255, 255, 255, 0.85);
}
.centerInput {
margin-right: auto;
margin-left: auto;
width: 30%;
}
ul.ui-autocomplete.ui-menu {
font-size: 12px;
}
.ui-state-focus {
border-color: transparent !important;
background: lightGray none no-repeat !important;
}
.autocompleteLabel {
font-family: 'Myriad Pro Bold', sans-serif;
font-size: 13px;
}
.autocompleteSubtitle {
font-size: 12px;
color: darkGray;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}