-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 1.05 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
/* General Styles */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-image: url('https://via.placeholder.com/1500'); /* Add your image link here */
background-size: cover;
background-attachment: fixed;
color: #fff;
}
header {
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
text-align: center;
}
header h1, header p {
margin: 0;
padding: 0;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
padding: 10px;
border-radius: 5px;
}
nav ul li a:hover {
background-color: #4CAF50;
}
main {
text-align: center;
padding: 50px;
}
main section {
background-color: rgba(0, 0, 0, 0.5);
margin: 20px auto;
padding: 30px;
border-radius: 10px;
width: 80%;
}
footer {
text-align: center;
padding: 20px;
background-color: rgba(0, 0, 0, 0.8);
position: fixed;
width: 100%;
bottom: 0;
}
footer p {
margin: 5px;
}
footer a {
color: #4CAF50;
text-decoration: none;
}