-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
106 lines (86 loc) · 1.44 KB
/
Copy pathstylesheet.css
File metadata and controls
106 lines (86 loc) · 1.44 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
body {
display: grid;
grid-template-columns: 0.4fr 2.2fr 0.4fr;
grid-template-rows: 0.3fr 0.3fr 2.9fr 0.5fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"header header header"
"navbar navbar navbar"
"placeholder1 main placeholder2"
"footer footer footer";
font-style: italic;
}
header {
grid-area: header;
background: #ffbf00;
padding-top: 10px;
padding-bottom: 10px;
}
nav {
grid-area: navbar;
background: #8045d3;
}
nav li{
display: inline;
margin: 5px;
padding: 5px;
}
footer {
grid-area: footer;
background: #8045d3;
text-align: center;
padding-top: 15px;
}
.placeholder1 { grid-area: placeholder1; }
.placeholder2 { grid-area: placeholder2; }
main {
grid-area: main;
background: #ffbf00;
}
main ul li {
border: 1px solid black;
}
main button{
margin-top: 10px;
}
#map {
height: 90vh;
width: 80vw;
border: 10px;
}
iframe {
border: 0px;
height: 30px;
}
body > * {
/*border:1px solid black;*/
text-align: center;
}
nav a {
text-decoration: none;
font-weight: bold;
color: #ffbf00;
}
nav a:hover {
color: red;
}
.journey {
border-radius: 5px;
margin-left: 90px;
margin-right: 90px;
}
.journeyList {
list-style: none;
}
.journeyList * {
margin-left: 10px;
padding: 2px;
border-radius: 5px;
}
.journeyList li {
margin: 5px;
}
.journeyList .reisename {
width: 100px;
}