-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (79 loc) · 1.48 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
88
89
90
91
92
93
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
box-sizing: border-box;
}
.hintergrund {
background-size: cover;
}
.headline {
text-decoration: underline;
max-width: 1100px;
margin: 0 auto;
padding: 10px;
margin-bottom: 0px;
}
.headbox {
display: flex;
justify-content: space-between;
max-width: 1100px;
margin: 0 auto;
padding: 10px;
}
.main-headline {
text-decoration: underline;
font-size: 25px;
margin: 0;
}
.new {
padding-bottom: 0px;
}
.new a {
text-decoration: none;
text-decoration: underline;
color: black;
font-size: large;
}
.uebersicht {
display: flex;
flex-wrap: wrap-reverse;
flex-direction: row-reverse;
justify-content: flex-end;
max-width: 1100px;
margin: 0 auto;
}
.outline {
width: calc(100% /3);
padding: 10px;
}
.infokasten {
background-color: #e2e2e2;
padding-bottom: 10px;
border: 2px solid steelblue;
border-radius: 20px;
}
.linkbox {
margin: 0;
background-color: #e2e2e2;
padding-left: 5px;
}
.linkbox a {
text-decoration: none;
padding: 5px;
color: white;
background-color: #314151;
font-size: 20px;
border: 0.5px solid #314151;
border-radius: 20px;
}
.linkbox a:hover {
color: black;
background-color: whitesmoke;
border: 0.5px solid steelblue;
}
.details {
padding-right: 10px;
}