-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlandingpage.css
72 lines (62 loc) · 1.46 KB
/
landingpage.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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
color: #fff;
}
header {
background-color: transparent; /* Make the header transparent */
color: #fff;
padding: 10px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img {
height: 40px;
margin-left: 20px;
}
.logo-text {
font-size: 20px;
margin-left: 10px;
padding-bottom: 15px;
color: #FC6A03; /* Apply the color to the logo text */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 5px;
padding: 5px 5px;
}
nav ul li:last-child {
margin-right: 10px;
}
nav ul li a {
color: #FC6A03; /* Apply the color to the menu item text */
text-decoration: none;
}
.slideshow-container {
width: calc(100% - 20px); /* 10px padding on each side */
height: calc(100vh - 60px); /* 10px padding from the top and bottom */
margin: 10px;
overflow: hidden;
border-radius: 10px; /* Rounded corners for the slideshow container */
}
.slideshow-slide {
display: none;
border-radius: 10px; /* Rounded corners for the slides */
}
.slideshow-slide img {
width: 100%;
height: 100%;
object-fit: cover; /* Ensure the image covers the entire slide */
}