-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (48 loc) · 920 Bytes
/
style.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
body {
background-image: url('./src/home/ouro.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: white;
}
.User {
position: relative;
margin: 0 auto;
text-align: center;
padding: 20px 0;
}
.User h1 {
color: white;
margin: 20px 0;
font-size: 2em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.User img {
border: solid 2px white;
border-radius: 50%;
width: 190px;
height: 190px;
object-fit: cover;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.Icon {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.Icon a img {
border: solid 2px white;
border-radius: 50%;
height: 100px;
width: 100px;
object-fit: cover;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.Icon a img:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
}