-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuser.css
More file actions
46 lines (40 loc) · 978 Bytes
/
user.css
File metadata and controls
46 lines (40 loc) · 978 Bytes
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
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a; /* Dark background */
color: #ccc; /* Light text color */
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 20px auto;
background-color: #333; /* Dark container background */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Darker shadow */
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #f0f0f0; /* Light heading color */
}
.profile {
margin-bottom: 20px;
}
.profile p {
margin: 10px 0;
color: #ccc; /* Light text color */
}
a {
display: inline-block;
padding: 10px 20px;
margin: 10px;
background-color: darkred; /* Dark red button background */
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #5c0404; /* Darker red on hover */
}