Skip to content

Commit 4a64b73

Browse files
Site finalizado
1 parent 6cbeaf9 commit 4a64b73

13 files changed

+116
-6
lines changed

index.html

+14-4
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,21 @@ <h3>Get a bird's eye view with our customizable dashboard. Stay on top of things
4040
</div>
4141
</div>
4242
<main>
43-
<img class="template" src="./template/Desktop - Light.png" alt="white-template">
44-
<img class="mobile" src="./template/Mobile.png" alt="mobile">
43+
<div class="principal">
44+
<img class="template" src="./template/full.png" alt="white-template">
45+
</div>
4546
</main>
46-
<footer>
47-
47+
<footer class="rodape">
48+
<div class="rodape__item">
49+
<p>Trusted by these companies</p>
50+
<div class="rodape__item__links">
51+
<a><img src="./template/Google.png" alt="Google"></a>
52+
<a><img src="./template/Slack.png" alt="Slack"></a>
53+
<a><img src="./template/Trustpilot.png" alt="Trustpilot"></a>
54+
<a><img src="./template/CNN logo.png" alt="CNN"></a>
55+
<a><img src="./template/Clutch.png" alt="Clutch"></a>
56+
</div>
57+
</div>
4858
</footer>
4959
</body>
5060
</html>

style/style.css

+51-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
:root {
44
--color1: #36485C;
55
--color2: #4328EB;
6+
--color3: #D5CFFA;
67
}
78

89
body {
910
margin: 0;
1011
padding: 0;
1112
width: 100wh;
13+
background:
14+
linear-gradient(to bottom, white 50%,transparent 60%) no-repeat,
15+
linear-gradient(to left, #FF5222, #F800AF ,#975BEB) no-repeat;
1216
}
1317

1418
.cabecalho {
@@ -60,6 +64,7 @@ body {
6064
}
6165

6266
.sub_cabecalho {
67+
position: relative;
6368
font-family: 'Inter', sans-serif;
6469
display: flex;
6570
margin: 0 auto;
@@ -105,6 +110,50 @@ body {
105110
text-decoration: none;
106111
}
107112

108-
.mobile{
109-
position: relative;
113+
.sub_cabecalho__botoes p {
114+
color: var(--color2);
115+
}
116+
117+
.sub_cabecalho__botoes i {
118+
background-color: var(--color3);
119+
border-radius: 100%;
120+
width: 16px;
121+
height: 16px;
122+
display: flex;
123+
}
124+
125+
.principal {
126+
margin: 60px 10% 64px 10%;
127+
display: flex;
128+
align-items: center;
129+
justify-content: center;
130+
}
131+
132+
.template {
133+
width: 90%;
134+
}
135+
136+
.rodape {
137+
/* margin: 0px 80px 80px 80px; */
138+
margin: 0px 5% 5% 5%;
139+
}
140+
141+
.rodape__item {
142+
display: flex;
143+
align-items: center;
144+
justify-content: space-between;
145+
}
146+
147+
.rodape__item p {
148+
color: white;
149+
font-size: 18px;
150+
font-family: 'Inter' sans-serif;
151+
font-weight: 400;
152+
}
153+
154+
.rodape__item__links {
155+
display: flex;
156+
align-items: center;
157+
width: 966px;
158+
justify-content: space-between;
110159
}

template/CNN logo.png

1.27 KB
Loading

template/Clutch.png

1.12 KB
Loading

template/Desktop - Light.png

-546 KB
Binary file not shown.

template/Google.png

1.32 KB
Loading

template/Gradient (1).png

381 KB
Loading

template/Gradient.png

714 KB
Loading

template/Mobile.png

-58.5 KB
Binary file not shown.

template/Slack.png

1.79 KB
Loading

template/Trustpilot.png

1.86 KB
Loading

template/full.png

219 KB
Loading

teste_posicao.html

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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>Teste posição</title>
7+
<style>
8+
div {
9+
border: 1px solid black;
10+
height: 50px;
11+
margin-bottom: 10px;
12+
}
13+
.d1 {
14+
background-color: gray;
15+
position: static;
16+
}
17+
.d2 {
18+
background-color: blue;
19+
position: relative;
20+
top: 10px;
21+
left: 10px;
22+
}
23+
.d3 {
24+
background-color: red;
25+
position: absolute;
26+
top: 10px;
27+
right: 10px;
28+
}
29+
.d4 {
30+
background-color: blue;
31+
position: relative;
32+
overflow: hidden;
33+
}
34+
.d5 {
35+
position: absolute;
36+
background-color: chocolate;
37+
top: 15px;
38+
right: 15px;
39+
}
40+
</style>
41+
</head>
42+
<body>
43+
<div class="d1">static d1</div>
44+
<div class="d2">relative d2</div>
45+
<div class="d5">absolute d5</div>
46+
<div class="d4">
47+
relative d4
48+
<div class="d3">absolute d3</div>
49+
</div>
50+
</body>
51+
</html>

0 commit comments

Comments
 (0)