-
Notifications
You must be signed in to change notification settings - Fork 0
/
teste.html
37 lines (34 loc) · 990 Bytes
/
teste.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teste</title>
<style>
.banner {
position: relative;
top: 10rem;
left: 5rem;
width: 90vw ;
height: 50vh;
max-height: 22rem;
/* box-shadow: inset 20px 20px 20px black,
inset -20px -20px 20px black; */
box-shadow: 0 0 20rem 8rem gold, inset 0 0 3rem 3rem pink;
/* box-shadow:
inset 0 0 9em gold,
0 0 9em red; */
background: url('https://img.freepik.com/vetores-gratis/projeto-de-layout-de-banner-abstrato-geometrico-fundo-largo-azul_1017-23062.jpg') center;
background-size: cover;
}
</style>
</head>
<body>
<header></header>
<main>
<div class="banner">
</div>
</main>
<footer></footer>
</body>
</html>