-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (54 loc) · 975 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
57
58
59
60
61
62
63
64
65
66
/* Global Styles */
body, html {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
section {
padding: 60px 0;
}
#photos img {
margin-bottom: 20px;
border-radius: 8px;
}
#videos iframe {
margin-bottom: 20px;
}
.navbar-nav .nav-item {
margin-left: 15px;
}
#contact {
background-color: #f9f9f9;
padding: 50px 0;
}
#contact .form-control {
border-radius: 10px;
}
#contact button {
background-color: #007bff;
color: white;
border-radius: 10px;
padding: 10px 20px;
}
footer {
background-color: #343a40;
color: white;
padding: 20px;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
color: #007bff;
}
/* Responsive Styles */
@media (max-width: 768px) {
#photos .col-md-4 {
margin-bottom: 30px;
}
#videos .col-md-6 {
margin-bottom: 30px;
}
}