-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (66 loc) · 1.04 KB
/
styles.css
File metadata and controls
81 lines (66 loc) · 1.04 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
72
73
74
75
76
77
78
79
80
81
/* Navbar */
.navbar {
background-color: green;
}
.navbar-brand {
font-size: 1.5rem;
}
.navbar-nav .nav-link {
color: white;
}
.navbar-nav .nav-link:hover {
color: black;
}
.logo-img {
width: 30px;
height: auto;
}
/* Jumbotron */
.jumbotron {
background-image: url('header.jpg');
background-size: cover;
color: #ffffff;
padding: 100px 0;
text-align: center;
height: 500px;
}
.jumbotron h1 {
font-size: 3.5rem;
font-weight: bold;
}
.jumbotron p {
font-size: 1.2rem;
}
/* Sections */
section {
padding: 80px 0;
}
section h2 {
font-size: 2.5rem;
font-weight: bold;
}
section p {
font-size: 1.1rem;
}
/* Buttons */
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
/* Footer */
footer {
background-color: #17A2B8;
color: #ffffff;
padding: 20px 0;
}
footer p {
margin-bottom: 0;
}
/* Custom CSS */
.gallery-image {
height: 500px;
}