-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (70 loc) · 1.23 KB
/
styles.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
80
81
82
83
84
body {
font-family: Arial, sans-serif;
background-color: #0d1b2a;
color: #ffffff;
margin: 0;
padding: 0;
}
header {
background-color: #1b263b;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
color: #e0e1dd;
}
#search-bar {
margin-top: 10px;
padding: 10px;
width: 80%;
max-width: 400px;
border-radius: 5px;
border: 1px solid #ccc;
}
main {
padding: 20px;
}
section {
margin-bottom: 20px;
}
h2.collapsible {
color: #f4a261;
cursor: pointer;
border-bottom: 2px solid #e76f51;
padding-bottom: 5px;
transition: color 0.3s;
}
h2.collapsible:hover {
color: #e9c46a;
}
.content {
display: none;
margin-top: 10px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 5px 0;
}
a {
color: #2a9d8f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #e9c46a;
}
footer {
background-color: #1b263b;
text-align: center;
padding: 10px;
}
#return-home {
position: fixed; /* Fixed positioning relative to the viewport */
top: 10px; /* 10 pixels from the top */
right: 10px; /* 10 pixels from the right */
z-index: 1000; /* Ensures it stays on top of other content */
}