-
Notifications
You must be signed in to change notification settings - Fork 1
/
section_five.css
88 lines (68 loc) · 1.26 KB
/
section_five.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
#wrapper_five .content{
grid-area: "content";
display: grid;
width: 100%;
height: 90%;
margin-left: -3vw;
column-gap: 60px;
grid-template-columns: 55% 45%;
grid-template-rows: 30% 70%;
grid-template-areas:
"btn_anomalie null"
"diagram side_text";
}
#btn_anomalie {
grid-area: btn_anomalie;
margin-left: 3vw;
}
#side_text {
grid-area: side_text;
}
#diagramDiv {
grid-area: diagram;
margin-top: 15px;
}
/* ---------- text/button-styling ---------- */
#wrapper_five span {
font-weight: 300;
}
#wrapper_five hr {
margin-top: 10px;
width: 290px;
text-align: left;
margin-left: 0;
}
#side_text_small {
width: 360px;
}
#side_text .smallheading {
margin-top: 0;
}
#btn18 {
margin-right: 15px;
}
#btn_anomalie .smallheading {
margin-top: 0;
margin-bottom: 25px;
}
/* --------- Diagramm --------- */
.diagram_rect {
opacity: 100%;
height: 0%;
}
@media only screen and (min-width: 1024px ) and (max-width: 1280px ) {
#side_text_small {
width: 270px;
}
#wrapper_five hr {
width: 230px;
}
}
@media only screen and (min-width: 1680px ) {
#side_text_small {
width: 470px;
}
#wrapper_five hr {
width: 390px;
}
}