-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
93 lines (77 loc) · 1.33 KB
/
Copy pathCSS.css
File metadata and controls
93 lines (77 loc) · 1.33 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
body {
background-color: darkslategray;
margin-top: 4vw;
color: seashell;
}
h1 {
font-family: serif;
text-align: center;
font-size: 3em;
}
h2{
font-size: 2em;
text-align: center;
}
h3, h4, h5 {
font-size: 1.5em;
}
p {
font-family: verdana;
font-size: 1.3em;
margin-right: 3vw;
}
[class*="center-"] {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.center-bilde1 {
width: 80%;
}
.center-bilde2 {
width: 60%;
}
@media only screen and (max-width: 1000px) {
.center-small{
display: inline;
margin-left: none;
margin-right: none;
width: 40%;
}
}
@media only screen and (max-width: 1000px) {
.center-bilde1-small{
width: 100%;
}
}
/* navbar */
.anchor {
padding-top: 90px;
margin-top: -90px;
}
@media only screen and (max-width: 1000px){
.anchor{
padding-top: 70px;
margin-top: -70px;
}
}
ul.menu {
list-style-type: none;
position: fixed;
top: 0;
width: 100%;
background-color: dimgray;
margin: 0;
padding: 0;
overflow: hidden;
margin-left: -10px;
}
li a {
font-size: 1.2em;
display: block;
text-decoration: none;
text-align: center;
padding: 1.3vw;
color: seashell;
}