-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.16 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.16 KB
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
/* style.css */
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.slideshow-container {
position: relative;
width: 100%;
overflow: hidden;
background-color: #fff;
margin: 20px auto;
padding: 20px;
border-radius: 15px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.slideshow-track {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slideshow-slide {
min-width: 300px;
box-sizing: border-box;
padding: 20px;
text-align: center;
margin-right: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.slideshow-slide img {
width: 100%;
height: auto;
border-radius: 10px;
}
.slide-content {
text-align: center;
padding-top: 10px;
}
.slide-content h3 {
color: #007bff;
margin-top: 10px;
}
.slide-content p {
color: #666;
text-align: justify;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: absolute;
bottom: 0;
width: 100%;
}