-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyledetails.css
64 lines (55 loc) · 1.01 KB
/
styledetails.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
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
background-color: #f5f5f5;
}
.main-headline {
max-width: 1100px;
margin: 0 auto;
text-decoration: underline;
font-size: 25px;
padding-left: 10px;
padding-top: 10px;
}
.infokasten {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1100px;
margin: 0 auto;
}
.headline {
text-decoration: underline;
padding: 10px;
margin-bottom: 0px;
}
.back a {
text-decoration: none;
padding: 5px;
color: black;
background-color: #d3d3d3;
font-size: 20px;
border: 0.5px solid #d3d3d3;
border-radius: 20px;
}
.back a:hover {
color: black;
background-color: whitesmoke;
border: 0.5px solid steelblue;
}
.back {
padding-right: 10px;
}
.chartbox {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.chart {
width: calc(100% /2);
padding: 10px;
}