forked from firefox-addons/mentor-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (61 loc) · 1.16 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
body {
margin: 20px;
font-family: 'Roboto', sans-serif;
}
header {
text-align: center;
}
#mentorsMap {
height: calc(100vh - 40px);
}
.leaflet-popup-content {
align-items: center;
display: flex;
margin: 10px;
max-width: 200px;
}
.leaflet-popup-content span {
display: block;
}
.leaflet-popup-content .avatar {
background-image: url(img/icon_48.png);
background-size: cover;
height: 64px;
margin-right: 10px;
width: 64px;
}
#searchQuery {
border: 1px solid #ddd;
display: block;
font-size: 16px;
padding: 12px 40px;
margin-top: 12px;
margin-bottom: 12px;
width: calc(100% - 80px);
}
#tableHolder{
height: 500px;
overflow-y: auto;
}
#tableHolder table {
border-collapse: collapse;
width: 100%;
border: 1px solid #ddd;
font-size: 18px;
}
#tableHolder table th, #tableHolder table td {
text-align: left;
padding: 12px;
}
#tableHolder table tr {
border-bottom: 1px solid #ddd;
}
#tableHolder table tr.header, #tableHolder table tr:hover {
background-color: #f1f1f1;
}
/* mobile first \o/ */
@media screen and (min-width: 376px) {
.leaflet-popup-content {
min-width: 350px;
}
}