-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
125 lines (104 loc) · 1.9 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* OVERALL */
body {
font-family: Roboto, Arial, sans-serif;
}
/* PAGE LAYOUT */
#content {
display: flex;
}
#map {
height: 85vh;
width: 35vw;
min-width: 500px;
}
#offers {
flex: 1;
height: 85vh;
overflow: scroll;
margin-right: 10px;
}
#details {
height: 85vh;
overflow: scroll;
display: none;
}
#content.detailsmode #map,
#content.detailsmode #offers {
display: none;
}
#content.detailsmode #details {
display: block;
}
button {
float: right;
}
/* OFFER LIST */
.offer {
padding: 10px;
border-bottom: 1px solid black;
}
/* zebra stripes
.offer:nth-child(even) {
background-color: #ccc;
}
*/
.offer:hover {
background-color: #ccc;
}
/* EACH OFFER */
.offer h3 {
padding: 0;
margin: 0;
font-size: 12pt;
}
.offer h3 a {
color: black;
text-decoration: none;
}
.offer h3 span {
cursor: pointer;
}
.offer .tags {
float: right;
}
.offer .tags span {
cursor: pointer;
}
.offer .inhabitants:after,
.offer .costs:after,
.offer .size:after {
content: " • ";
}
.offer .street {
font-weight: bold;
padding-right: 10px;
}
.street:before {
content: "\a";
white-space: pre
}
.offer .distances {
font-style: italic;
padding-right: 10px;
}
.offer .distances:before {
content: "(";
}
.offer .distances:after {
content: ")";
}
.offer .onlinesince {
color: #999;
}
.offer .tags .tags-read.false:after { content: "🆕"; }
.offer .tags .tags-read.true:after { content: "👁"; }
.offer .tags .tags-interesting.undefined.false:after { content: "🤔"; }
.offer .tags .tags-interesting.false:after { content: "😐"; }
.offer .tags .tags-interesting.true:after { content: "😍"; }
.offer .tags .tags-contacted.false:after { content: "📝"; }
.offer .tags .tags-contacted.true:after { content: "✉️"; }
.offer .tags .tags-invited.false:after { content: "❓"; }
.offer .tags .tags-invited.true:after { content: "👍"; }
#details .freetexts {
column-count: 2;
}