-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (77 loc) · 1.37 KB
/
style.css
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
body{
margin: 150px 15%;
background-image:url(img/background.png);
font-family: sans-serif;
min-width:500px;
}
section{
min-height:400px;
background-color:#fafafa;
padding:15px;
border: 1px solid grey;
}
section table{
margin-left: auto;
margin-right: auto;
}
section table td{
text-align: left;
}
aside{
float:right;
width: 30%;
margin-left: 20px;
min-width:100px;
max-width: 300px;
}
aside img{
width:100%;
margin-bottom: 5px;
}
.undertekst{
color:grey;
}
nav ul {
list-style-type: none;
padding: 0;
overflow: hidden;
background-color:white;
border: 1px solid grey;
margin-bottom: 15px;
}
nav li {
float: left;
}
nav li a, .dropbtn {
display: inline-block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav li a:hover, .dropdown:hover .dropbtn {
background-color: rgb(225,240,255);
color:black;
}
nav li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: rgb(240,240,240);
min-width: 160px;
}
.dropdown-content a {
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
color:black;
}
.dropdown-content a:hover {
background-color: white;
}
.dropdown:hover .dropdown-content {
display: block;
}