-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfilDoador.html
145 lines (115 loc) · 3.46 KB
/
perfilDoador.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Perfil doador</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
<style type="text/css" title="MeuEstilo" media="all">
* {
font-family: 'Ubuntu', sans-serif;
}
body {
background-color: #8f4777;
text-align: center;
margin: 0;
}
.container {
width: 80%;
align-items: center;
background-color: #f1f1f1;
border-radius: 10px;
box-shadow: 6px 4px 6px #000;
padding: 15px;
text-align: center;
margin: 25px auto 25px auto;
}
h1 {
color: #2E2E2E;
}
h2 {
color: #2E2E2E;
font-size: 14px;
}
.about h1 {
font-size: 16px;
}
.about p {
color: #A5A5A5;
font-weight: 400;
}
.button {
width: 200px;
background-color: #b10a79;
border-radius: 10px;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px 10px;
cursor: pointer;
}
.about {
padding: 30px;
margin: 30px;
background-color: #fff;
border-radius: 0%;
text-align: center;
}
img.avatar {
width: 200px;
border-radius: 10%;
filter: grayscale(1);
transition: 0.5s;
}
img.ico {
width: 20px;
filter: grayscale(1);
transition: 0.5s;
}
img:hover {
filter: grayscale(0);
cursor: pointer;
border-radius: 50%;
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.negrito {
font-weight: 700;
}
</style>
</head>
<body>
<div class="container">
<h1> Perfil </h1>
<p>Sou chefe de uma editora de livros</p>
<img class="avatar" src="./img/yae.png" alt="Avatar">
<div class="about">
<h1>Sobre mim</h1>
<p> colocar descrição</p>
</div>
<div>
<h2>Detalhes</h2>
<span class="negrito">Nome:</span>
<p>Yae Miko</p>
<span class="negrito">Idade:</span>
<p>29 anos</p>
<span class="negrito">Localização:</span>
<p>Inazuma- Teyvat</p>
<span class="negrito">Sexo</span>
<p>Feminino</p>
<span class="negrito">CNPJ</span>
<p>***************</p>
<span class="negrito">Empresa</span>
<p>Livraria</p>
<button class="button">Faça uma doação</button>
<div class="icon">
<img src="./img/icon face.png" class="ico" />
<img src="./img/icon insta.png" class="ico" />
<img src="./img/icon twitter.png" class="ico" />
</div>
</div>
</div>
</body>
</html>