Skip to content

Commit 880cb72

Browse files
feat: 📝 Menu de atividades feito
1 parent 9183dd9 commit 880cb72

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

index.html

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Página Incial</title>
7+
8+
<style>
9+
body,
10+
html {
11+
margin: 0;
12+
padding: 0;
13+
14+
font-family: "Helvetica", "Roboto", "Arial", sans-serif;
15+
}
16+
17+
h1 {
18+
display: flex;
19+
justify-content: center;
20+
transition: text-shadow 0.3s ease-in-out;
21+
}
22+
23+
h1:hover {
24+
text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
25+
}
26+
27+
a {
28+
color: inherit;
29+
text-decoration: none;
30+
transition: background-color 0.3s ease-in-out 0.1s,
31+
font-weight 0.3s ease-in-out 0.1s;
32+
}
33+
34+
a:hover {
35+
background-color: rgba(52, 152, 219, 0.5);
36+
font-weight: 500;
37+
width: 105%;
38+
}
39+
40+
.grid-container {
41+
margin: 2%;
42+
43+
height: fit-content;
44+
45+
display: grid;
46+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
47+
grid-auto-rows: 200px;
48+
grid-gap: 20px;
49+
grid-auto-flow: dense;
50+
}
51+
52+
.grid-item {
53+
background-image: linear-gradient(
54+
to bottom,
55+
rgb(52, 152, 219),
56+
rgba(52, 152, 219, 0.555)
57+
);
58+
59+
display: flex;
60+
align-items: center;
61+
justify-content: center;
62+
font-size: 24px;
63+
border-radius: 3%;
64+
}
65+
</style>
66+
</head>
67+
<body>
68+
<h1>Atividades Semanais:</h1>
69+
70+
<div class="grid-container">
71+
<a class="grid-item" href="./dwba4-semana-01/index.html">Semana 1</a>
72+
<a class="grid-item" href="./dwba4-semana-03-PT3025616/index.html"
73+
>Semana 3</a
74+
>
75+
<a class="grid-item" href="./dwba4-semana-04-PT3025616/index.html"
76+
>Semana 4</a
77+
>
78+
<a class="grid-item" href="./dwba4-semana-05-PT3025616/index.html"
79+
>Semana 5</a
80+
>
81+
<a class="grid-item" href="./dwba4-semana-06-PT3025616/index.html"
82+
>Semana 6</a
83+
>
84+
<a class="grid-item" href="./dwba4-semana-07-PT3025616/index.html"
85+
>Semana 7</a
86+
>
87+
</div>
88+
<script defer>
89+
console.log("teste");
90+
</script>
91+
</body>
92+
</html>

0 commit comments

Comments
 (0)