Skip to content

Commit

Permalink
background ok
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandoleonid committed Mar 29, 2024
1 parent 0ce470e commit ae492f7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
26 changes: 26 additions & 0 deletions 08-dragon-ball-super/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
a{
text-decoration: none;
color: inherit;
}
ul, ol, li{
list-style: none;
}

body{
height: 100vh;
background-color: #000;
}

video{
position: absolute;
height: 100vh;
width: 100vw;
object-fit: cover;
z-index: -100;
opacity: .6;
}
15 changes: 15 additions & 0 deletions 08-dragon-ball-super/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Dragon ball super</title>
</head>
<body>
<video autoplay muted loop>
<source src="./video/dragon-ball-super.mp4">
</video>
<h1>TESTE</h1>
</body>
</html>

0 comments on commit ae492f7

Please sign in to comment.