summaryrefslogtreecommitdiff
path: root/static/v0/css/wip.css
blob: e3efc2abca89360856abc00410e6d9573cb46aed (plain)
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
body {
	margin: 0;
	color: black;
	background-color: white;
}

html {
	font-family: Sans-Serif;
}

.container {
	max-width: 60em;
	margin-left: auto;
	margin-right: auto;
}

ul.departures {
	position:relative;
	width:100%;

	border-width:1px 2px;
	margin-bottom: 5em;

	list-style-type:none;
	margin:0;
	padding:0;
}

ul.departures > li {
	display: block;
	height: 3em;
	width: 100%;
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid grey;
	background-color: white;
}

ul.departures li .line {
	position: absolute;
	bottom: 5px;
	left: 2px;
	max-width: 6em;
	max-height: 3ex;
	overflow: hidden;
	font-size: 150%;
}

ul.departures li .dest {
	position: absolute;
	top: 0.5ex;
	left: 4em;
	bottom: 0px;
	width: 70%;
	overflow: hidden;
	background-color: transparent;
	font-size: 200%;
	color: black;
}

ul.departures li .time {
	position: absolute;
	right: 5px;
	top: 4px;
	background-color: transparent;
	font-size: 100%;
	padding-left: 0.2em;
	color: black;
}

@media only screen and (max-width: 600px) {
	ul.departures > li {
		font-size: 85%;
	}
}

@media only screen and (min-width: 600px) {
}