Skip to content

Commit 8ea31b8

Browse files
Exercicios
1 parent 9957f45 commit 8ea31b8

31 files changed

Lines changed: 860 additions & 0 deletions
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

exercicio_flex/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="styles.css" />
8+
<title>Exercicio de Fixação</title>
9+
</head>
10+
<body>
11+
<header class="header">
12+
<img src="img/iconrock-red.svg" alt="logo-rock" class="logo-rock" />
13+
<img src="img/logo-onebitcode.svg" alt="logo-onebitcode" class="logo" />
14+
<div class="buttons">
15+
<button class="buttonHeader">Início</button>
16+
<button class="buttonHeader">FAQ</button>
17+
<button class="buttonHeader">Suporte</button>
18+
</div>
19+
</header>
20+
</body>
21+
</html>

exercicio_flex/styles.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
* {
2+
padding: 0;
3+
margin: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
.header {
8+
background-color: black;
9+
display: flex;
10+
justify-content: space-between;
11+
align-items: center;
12+
padding: 10px 25px;
13+
}
14+
15+
.logo-rock {
16+
width: 40px;
17+
}
18+
19+
.logo {
20+
width: 200px;
21+
}
22+
23+
.buttons {
24+
display: flex;
25+
gap: 10px;
26+
}
27+
28+
.buttonHeader {
29+
font-size: 20px;
30+
padding: 10px 15px;
31+
border-radius: 10px;
32+
background-color: transparent;
33+
border-color: white;
34+
color: white;
35+
cursor: pointer;
36+
transition: 0.4s;
37+
}
38+
39+
.buttonHeader:hover {
40+
border-color: #ff0044;
41+
}
115 KB
Loading
143 KB
Loading
52.3 KB
Loading
231 KB
Loading
150 KB
Loading
121 KB
Loading

0 commit comments

Comments
 (0)