-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
56 lines (48 loc) · 912 Bytes
/
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
* {box-sizing:border-box}
body {
margin: 0;
display: grid;
justify-content: center;
height: 100vh;
align-items: center;
background-color: #8879B0;
}
.funny-text {
color: white;
text-align: center;
}
.OPP {
opacity: 30%;
}
.slideshow-container {
position: relative;
display: flex;
justify-content: space-around;
overflow: hidden;
width: 800px;
height: 200px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(26, 24, 24, 0.3);
background-color: white;
padding-top: 15px;
}
.mySlides {
display: none;
}
.text {
color: rgb(36, 32, 32);
font-size: 20px;
font-weight: 50px;
padding: 8px 12px;
bottom: 12px;
width: 100%;
text-align: center;
}
.fade {
animation-name: fade;
animation-duration: 2s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}