Skip to content

Commit c459c3b

Browse files
committed
Create styles.css
1 parent fe516a9 commit c459c3b

File tree

1 file changed

+86
-0
lines changed

1 file changed

+86
-0
lines changed

styles.css

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
background-color: #f4f4f4;
6+
overflow-y: auto; /* Ensure vertical scrollbar appears if needed */
7+
}
8+
9+
::-webkit-scrollbar {
10+
width: 10px; /* Set the width of the scrollbar */
11+
}
12+
13+
::-webkit-scrollbar-track {
14+
background: #f4f4f4; /* Background color of the track */
15+
}
16+
17+
::-webkit-scrollbar-thumb {
18+
background: #007bff; /* Color of the scrollbar thumb */
19+
border-radius: 5px; /* Round the corners of the scrollbar thumb */
20+
}
21+
22+
::-webkit-scrollbar-thumb:hover {
23+
background: #0056b3; /* Darker color on hover */
24+
}
25+
26+
header {
27+
background-color: #333;
28+
color: white;
29+
padding: 10px 0;
30+
display: flex;
31+
justify-content: space-between;
32+
align-items: center;
33+
padding: 20px 20px;
34+
}
35+
36+
header h1 {
37+
margin: 0;
38+
text-align: left;
39+
}
40+
41+
nav ul {
42+
list-style: none;
43+
padding: 0;
44+
margin: 0;
45+
display: flex;
46+
}
47+
48+
nav ul li {
49+
margin: 0 15px;
50+
}
51+
52+
nav ul li a {
53+
color: white;
54+
text-decoration: none;
55+
font-weight: bold;
56+
}
57+
58+
main {
59+
padding: 20px;
60+
text-align: center;
61+
}
62+
63+
.cta-button {
64+
display: inline-block;
65+
padding: 10px 20px;
66+
background-color: #007bff;
67+
color: white;
68+
text-decoration: none;
69+
border-radius: 5px;
70+
margin-top: 20px;
71+
}
72+
73+
footer {
74+
background-color: #333;
75+
color: white;
76+
text-align: center;
77+
padding: 10px 0;
78+
position: fixed;
79+
width: 100%;
80+
bottom: 0;
81+
}
82+
83+
footer a {
84+
text-decoration: none;
85+
color: #f4f4f4;
86+
}

0 commit comments

Comments
 (0)