blob: 409bcd473c36a2c810d011c20abcb81eff4f49c7 (
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
79
|
section {
padding: 0;
}
.infobulle {
display: none;
}
.little:hover .infobulle {
display: inline-block;
position: relative;
background-color: white;
z-index: 5;
top: 5px;
width: 300px;
font-family: monospace;
font-size: 0.9em;
line-height: 1.1em;
}
span.infobulle img {
width: 100%;
}
.grid {
display: flex;
flex-wrap: wrap;
padding: 4%;
margin-right: 120px;
list-style: none;
}
.little {
width: 100px;
height: 150px;
margin: 10px;
background-color: white;
}
.infobulle input[type="text"] {
font-family: monospace;
font-size: 0.9em;
margin: 3px;
}
img.thumbnail {
max-width: 100%;
max-height: 100px;
}
section.gest {
padding-bottom: 300px;
}
input[type="file"] {
font-size: 1.3em;
}
input[type="checkbox"] {
width: unset;
padding: unset;
margin: unset;
height: unset;
}
@media (max-width: 600px) {
nav {
width: unset;
position: relative;
display: block;
}
div#menu {
display: block;
}
}
|