Skip to content

Commit ee305d8

Browse files
Merge pull request #12 from felipe-seabra/updateTemplateNew
adicionando containers em sobre
2 parents 41d83c7 + 69b2c36 commit ee305d8

File tree

2 files changed

+38
-32
lines changed

2 files changed

+38
-32
lines changed

index.html

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -87,26 +87,28 @@ <h3>Eu sou estudante de desenvolvedor web</h3>
8787

8888
<!--Começo-da-seção-sobre-->
8989
<main id="about">
90-
<section class="background-color-Sobre container-fluid">
91-
<div class="main-sobre row">
92-
<img class="picture img-fluid" src="images/felipe-seabra.jpg" alt="Foto Felipe Seabra" />
93-
<div class="Text-sobre col-md-6 mt-2">
94-
<h2>Sobre-Mim</h2>
95-
<h5>Desenvolvedor <span>web</span></h5>
96-
<p>
97-
Sou o Felipe, natural de Presidente Prudente (SP), tenho aproximadamente 10 anos de experiência (como
98-
Analista de Infraestrutura de TI) atuando em diversas áreas de tecnologia em educação.
99-
</p>
100-
<p>
101-
Atualmente, sou estudante de desenvolvimento web full-stack na
102-
<strong> <a href="https://www.betrybe.com/" target="_blank">Trybe</a> </strong>. <br /><br />
103-
<strong> Minhas paixões são:</strong> aprender coisas novas, <em> codar </em>, jogos digitais, procurar o
104-
que consertar e <em>animais</em>!
105-
</p>
106-
<a href="https://www.linkedin.com/in/felipe-seabra/" target="_blank" class="btn">Vamos conversar</a
107-
><!--Button-->
90+
<section class="background-color-Sobre">
91+
<div class="container">
92+
<div class="main-sobre row">
93+
<img class="picture img-fluid" src="images/felipe-seabra.jpg" alt="Foto Felipe Seabra" />
94+
<div class="Text-sobre col-md-6 mt-2">
95+
<h2>Sobre-Mim</h2>
96+
<h5>Desenvolvedor <span>web</span></h5>
97+
<p>
98+
Sou o Felipe, natural de Presidente Prudente (SP), tenho aproximadamente 10 anos de experiência (como
99+
Analista de Infraestrutura de TI) atuando em diversas áreas de tecnologia em educação.
100+
</p>
101+
<p>
102+
Atualmente, sou estudante de desenvolvimento web full-stack na
103+
<strong> <a href="https://www.betrybe.com/" target="_blank">Trybe</a> </strong>. <br /><br />
104+
<strong> Minhas paixões são:</strong> aprender coisas novas, <em> codar </em>, jogos digitais, procurar
105+
o que consertar e <em>animais</em>!
106+
</p>
107+
<a href="https://www.linkedin.com/in/felipe-seabra/" target="_blank" class="btn">Vamos conversar</a
108+
><!--Button-->
109+
</div>
110+
<!--Text-sobre-->
108111
</div>
109-
<!--Text-sobre-->
110112
</div>
111113
<!--main-sobre-->
112114
</section>

style.css

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
width: 100%;
1414
}
1515

16+
.show {
17+
text-align: right;
18+
}
19+
1620
/* nav {
1721
display: flex;
1822
align-items: center;
@@ -34,7 +38,7 @@
3438
}
3539

3640
span {
37-
color: #f9004d;
41+
color: #dc143c;
3842
}
3943

4044
main a {
@@ -60,12 +64,12 @@ nav ul li a {
6064
}
6165

6266
nav ul li a:hover {
63-
color: #f9004d;
67+
color: #dc143c;
6468
transform: 0.4s;
6569
}
6670

6771
.btn {
68-
background-color: #f9004d;
72+
background-color: #dc143c;
6973
color: #fff;
7074
text-decoration: none;
7175
border: 2px solid transparent;
@@ -87,7 +91,7 @@ nav ul li a:hover {
8791
}
8892

8993
.Main span {
90-
color: #f9004d;
94+
color: #dc143c;
9195
}
9296

9397
#animate-flicker {
@@ -123,7 +127,7 @@ h3 {
123127
display: inline-block;
124128
width: 100%;
125129
padding: 14px 130px 14px 15px;
126-
border: 2px solid #f9004d;
130+
border: 2px solid #dc143c;
127131
border-radius: 30px;
128132
outline: none;
129133
}
@@ -135,7 +139,7 @@ h3 {
135139
border: none;
136140
padding: 10px 30px;
137141
border-radius: 30px;
138-
background-color: #f9004d;
142+
background-color: #dc143c;
139143
color: #fff;
140144
box-shadow: 0px 0px 5px #000, 0px 0px 15px #858585;
141145
right: 6px;
@@ -160,7 +164,7 @@ h3 {
160164
.main-sobre {
161165
align-items: center;
162166
justify-content: space-around;
163-
167+
164168
margin: 0 auto;
165169
}
166170

@@ -186,15 +190,15 @@ h3 {
186190
}
187191

188192
.Text-sobre p {
189-
color: #fcfc;
193+
color: #fff;
190194
letter-spacing: 1px;
191195
line-height: 28px;
192196
font-size: 18px;
193197
margin-bottom: 45px;
194198
}
195199

196200
button {
197-
background-color: #f9004d;
201+
background-color: #dc143c;
198202
color: #fff;
199203
text-transform: none;
200204
border: 2px solid transparent;
@@ -206,7 +210,7 @@ button {
206210

207211
button:hover {
208212
background-color: transparent;
209-
border: 2px solid #f9004d;
213+
border: 2px solid #dc143c;
210214
cursor: pointer;
211215
}
212216

@@ -247,7 +251,7 @@ button:hover {
247251
display: block;
248252
text-align: center;
249253
margin: 25px 0px;
250-
color: #f9004d;
254+
color: #dc143c;
251255
}
252256

253257
h5 {
@@ -315,7 +319,7 @@ footer p {
315319
}
316320

317321
.Redes-sociais a {
318-
background-color: #f9004d;
322+
background-color: #dc143c;
319323
width: 45px;
320324
height: 45px;
321325
padding: 15px;
@@ -337,7 +341,7 @@ footer p {
337341

338342
.end {
339343
position: absolute;
340-
color: #f9004d;
344+
color: #dc143c;
341345
bottom: 35px;
342346
font-size: 14px;
343347
}

0 commit comments

Comments
 (0)