-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser-Page.css
61 lines (50 loc) · 1.1 KB
/
User-Page.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
body {
font-family: Arial, sans-serif;
}
header {
background-color: #f8f9fa;
padding: 10px 0;
}
.welcome-container {
margin-top: 100px;
}
.search-container {
background-color: #fff;
width: 500%;
max-width: 500px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
/* CSS for the footer */
.footer {
background-color: #ffffff; /* Footer background color */
color: #fff; /* Text color */
padding: 20px; /* Add padding for spacing */
text-align: center;
font-weight: bolder;
}
.footer nav ul {
list-style: none;
padding: 0;
margin: 0; /* Remove default margin */
}
.footer nav ul li {
display: inline;
margin-right: 20px; /* Add margin between navigation items */
}
.footer nav ul li a {
color: #a52d2d;
text-decoration: none;
}
.footer nav ul li a:hover {
text-decoration: underline;
}
.Credits {
color: #a52d2d;
margin-top: 100px; /* Add space between copyright and credits */
}
.copyright {
margin-top: 10px; /* Add space between navigation and copyright */
color: #a52d2d;
}