1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
footer {
color: #ddd;
padding: 2em;
width: max-content;
a {
text-decoration: none;
}
a:after {
margin: 0 8px;
content: "•";
}
:last-child:after {
content: none;
}
}
fast and simple tripplanner
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
footer {
color: #ddd;
padding: 2em;
width: max-content;
a {
text-decoration: none;
}
a:after {
margin: 0 8px;
content: "•";
}
:last-child:after {
content: none;
}
}