-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (95 loc) · 2.02 KB
/
Copy pathstyles.css
File metadata and controls
107 lines (95 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* Fundo com gradiente */
body, html {
margin: 0;
padding: 0;
font-family: 'Lucida Console', monospace;
height: 100%;
background: linear-gradient(to top, #000, #002a4d);
display: flex;
justify-content: center;
align-items: center;
}
/* Caixa central */
.box {
background: #f9f9f9;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
text-align: center;
max-width: 600px;
min-width: 300px;
position: relative;
}
/* Profile picture */
.profile-picture {
width: 120px;
height: 120px;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
object-fit: cover;
margin: 0 auto;
display: block; /* Volta a centralizar a imagem */
}
/* Nome e furigana */
.name h1 {
margin: 10px 0;
font-size: 24px;
font-weight: bold;
}
.name h2 {
font-size: 18px;
font-weight: normal;
color: #333;
}
/* Botões de idiomas */
.language-buttons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 10px;
}
.language-buttons button,
.back-button {
background: #333;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: background 0.3s, transform 0.3s;
}
.language-buttons button:hover,
.back-button:hover {
background: #555;
transform: scale(1.05);
}
/* Ícones sociais */
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.social-icons img {
width: 40px;
height: 40px;
cursor: pointer;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s;
}
.social-icons img:hover {
transform: scale(1.1);
}
/* Animações de transição */
.fade-out {
opacity: 0;
transform: translateX(-20%);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in {
opacity: 1;
transform: translateX(0);
transition: opacity 0.5s ease, transform 0.5s ease;
}