-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark.profile.card.css
More file actions
62 lines (53 loc) · 1.44 KB
/
Copy pathdark.profile.card.css
File metadata and controls
62 lines (53 loc) · 1.44 KB
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
/* profile.card.css */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #121212; /* Cor de fundo escura */
}
img {
transition: transform 0.3s, box-shadow 0.5s;
border-radius: 50%;
width: 43%;
box-shadow: -3px -3px 10px rgba(0, 183, 255, 0.7),
3px 3px 10px rgba(0, 255, 106, 0.7); /* Sombra clara para imagem */
}
img:hover {
box-shadow: -3px -3px 10px rgba(140, 222, 255, 0.7),
3px 3px 10px rgba(140, 255, 188, 0.7); /* Sombra clara ao passar o mouse */
cursor: pointer;
}
.profile-card {
position: relative;
width: 300px;
padding: 20px;
background: #1e1e1e; /* Cor de fundo do card escura */
border-radius: 10px;
box-shadow: rgba(124, 124, 124, 0.7) 0px 0px 20px; /* Sombra escura ao redor do card */
}
.profile-header {
text-align: center;
}
.profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #333; /* Borda clara para a imagem no tema escuro */
}
.profile-body {
text-align: center;
margin-top: 10px;
}
.profile-name {
font-size: 1.5em;
color: #ffffff; /* Cor do texto do nome em branco */
margin: 0;
}
.profile-bio {
font-size: 1em;
color: #b0b0b0; /* Cor do texto da bio em cinza claro */
}