-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.css
More file actions
49 lines (41 loc) · 816 Bytes
/
Copy pathuser.css
File metadata and controls
49 lines (41 loc) · 816 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
47
48
49
@import url('main.css');
.page-container {
display: flex;
justify-content: center;
align-items: center;
padding: 4rem 2rem;
min-height: auto;
}
.profile-container {
width: 100%;
max-width: 500px;
}
.user-card {
text-align: left;
}
.user-info p {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
padding-bottom: 1.5rem;
}
.user-info p:last-child {
margin-bottom: 0;
border-bottom: none;
padding-bottom: 0;
}
.user-info strong {
color: var(--text-primary);
display: block;
margin-bottom: 0.25rem;
font-weight: 500;
}
.btn-logout {
margin-top: 2rem;
width: 100%;
background-color: var(--error);
}
.btn-logout:hover {
background-color: #d32f2f;
}