This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleSlideshow.css
84 lines (80 loc) · 2.49 KB
/
styleSlideshow.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
.slideSection
{
width: 480px;
height: 360px;
border: 0px solid;
padding: 0;
margin: 0;
margin-left: -50px;
overflow: hidden;
}
.slideSection img
{
position: relative;
width: 360px;
padding: 0;
margin: 40px 60px 0px 60px;
box-shadow: 0 10px 50px grey;
float: left;
display:inline;
}
#schieber{
position: relative;
margin-left: 0px;
height: 360px;
width: 4160px; /*je bild 600px in der Breite*/
display:inline;
float: left;
margin-top: -40px;
transition: all 0.4s ease-in-out;
}
#pfeilRechts
{
position: relative;
top: 50%;
left: 89%;
width: 10%;
height: 15%;
margin-top: -7%;
border: 0px solid;
background-image: url('Fonts/Bilder/Navigation_Slideshow/weiterRechtsGross_MO.png');
background-repeat: no-repeat;
background-position: center;
background-size:100% auto;
filter: grayscale(100%);
transition: all 0.5s ease-in-out;
cursor: pointer;
z-index: 999;
}
#pfeilRechts:hover
{
filter: grayscale(0%);
transition: all 0.2s ease-in-out;
background-size: 99%;
left: 90%;
}
#pfeilLinks
{
position: relative;
top: 45%;
left: 1%;
width: 10%;
height: 15%;
margin-top: -7%;
border: 0px solid;
background-image: url('Fonts/Bilder/Navigation_Slideshow/weiterLinksGross_MO.png');
background-repeat: no-repeat;
background-position: center;
background-size:100% auto;
filter: grayscale(100%);
transition: all 0.5s ease-in-out;
cursor: pointer;
z-index: 999;
}
#pfeilLinks:hover
{
filter: grayscale(0%);
transition: all 0.2s ease-in-out;
background-size: 99%;
left: 0%
}