forked from javs-perez/nerdearla-chile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (67 loc) · 1.1 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Navigation Bar Styles */
#navbar {
display: flex;
justify-content: center;
background-color: #333;
padding: 10px 0;
}
#navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
font-size: 17px;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
/* Collapsible Sections Styles */
details {
background-color: #f9f9f9;
padding: 10px;
margin: 5px 0;
}
summary {
font-weight: bold;
cursor: pointer;
}
/* Footer Styles */
#footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
#footer a {
color: #f9f9f9;
text-decoration: none;
}
#footer a:hover {
text-decoration: underline;
}
/* Image Presentation Enhancements */
img {
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Font Sizes, Styles, and Colors */
body {
font-family: 'Arial', sans-serif;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
color: #007bff;
}
p, li {
font-size: 16px;
line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 768px) {
#navbar {
flex-direction: column;
}
}