-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
113 lines (96 loc) · 1.54 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.slideshow {
width: 100vw;
height: 100vh;
box-shadow: 0px 0px 10px gray;
position: relative;
}
.slide {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
opacity: 0;
transition: opacity 2s;
}
.slide-bild {
width: 100%;
}
.slide-textbereich {
position: absolute;
left: 0;
bottom: 0;
right: 0;
top: 70%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
text-align: center;
font-family: sans-serif;
padding: 0 15% 0 15%;
}
.slide-ueberschrift {
font-size: 2em;
margin: 10px 0;
}
.slide-beschreibung {
font-size: 1.4em;
margin: 0;
}
.pfeil {
position: absolute;
top: 0;
bottom: 0;
font-size: 50px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
width: 15%;
color: rgba(255, 255, 255, 0.5);
user-select: none;
cursor: pointer;
}
.pfeil:hover {
color: white;
}
.pfeil-links {
left: 0;
}
.pfeil-rechts {
right: 0;
}
.indikatorenliste {
position: absolute;
top: 0;
left: 0;
right: 0;
list-style-type: none;
font-size: 40px;
display: flex;
justify-content: center;
margin: 0;
padding: 0;
}
.indikator {
padding: 0 10px;
user-select: none;
cursor: pointer;
opacity: 0.5;
transition: opacity 2s;
}
.aktiv {
opacity: 1;
}
#title {
position: absolute;
top: 12;
left: 80;
}