-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
80 lines (75 loc) · 1.5 KB
/
stylesheet.css
File metadata and controls
80 lines (75 loc) · 1.5 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
/* Stil for kartcontaineren */
#map {
height: 500px;
width: 70%;
display: flex;
align-items: center;
margin: 0 auto;
}
html, body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
text-align: center;
}
.header {
display: flex;
justify-content: center;
align-items: center;
gap: 15px; /* Avstand mellom overskrift og bilde */
margin-top: 10px;
}
.header img {
width: 170px;
height: 90px;
/* border-radius: 50%; */
border: 2px solid #333;
}
.container {
display: flex;
justify-content: center;
margin: 20px auto;
width: 80%;
}
/* Stil for boksen ved siden av kartet */
.info-box {
height: 400px;
width: 35%; /* 35% bredde for info-boksen */
margin-left: 10px;
padding: 20px;
background-color: #f4f4f4;
border: 2px solid #333;
box-sizing: border-box;
}
/* Stil for fargeboksene og teksten */
.legend-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.color-box {
width: 15px;
height: 15px;
margin-right: 8px;
border: 1px solid #333;
}
/* Eksempler på farger */
.color-yellow { background-color: yellow; }
.color-green { background-color: green; }
.color-red { background-color: red; }
/* Stil for footer og sosiale medier ikoner */
.footer {
text-align: center;
margin-top: 20px;
}
.footer a {
margin: 0 10px;
text-decoration: none;
}
/* Stil for ikoner */
.social-icon {
width: 30px;
height: 30px;
vertical-align: middle;}