-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.css
62 lines (53 loc) · 1.03 KB
/
profile.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
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #4a90e2;
}
#user-info {
max-width: 400px;
margin: 0 auto; /* Centraliza o conteúdo */
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
#user-info img {
border-radius: 50%;
width: 120px;
height: 120px;
}
h2 {
color: #4a90e2;
}
h3 {
color: #333;
}
ul {
list-style-type: none; /* Remove os marcadores da lista */
padding: 0;
}
li {
background-color: #f0f0f0;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
text-align: left; /* Alinha o texto à esquerda */
}
button {
padding: 10px 20px;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}
button:hover {
background-color: #357abd;
}