-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/rede-cidada/girls-code
- Loading branch information
Showing
5 changed files
with
184 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from 'react'; | ||
import './styles.css'; | ||
|
||
const Grupes = () => { | ||
return ( | ||
<div> | ||
<div className="grupe-container"> | ||
|
||
<section className="grupe-text"> | ||
|
||
<h2>Participe dos nossos grupos de estudos!</h2> | ||
<p>Esses grupos foram pensados para aquelas mulheres que não conseguiram entrar em nenhum curso. Nele você terá contato com outras mulheres, com até história e rotina semelhantes.</p> | ||
<p className="rotine-info"> <span>ah!</span> Os grupos são pensados seguindo a flexibilidade da sua rotina de estudos: se você tem pouco tempo para estudar ou um horário mais flexivél.</p> | ||
|
||
</section> | ||
|
||
<div className="btn-grupes"> | ||
<section className="first-btn-grupes"> | ||
<p>Grupo para quem tem de 30 á 40 minutos livres para estudo.</p> | ||
<button className="less-time">Vamos lá!</button> | ||
|
||
</section> | ||
|
||
<section className="second-btn-grupes"> | ||
<p>Grupo para quem tem de 60 minutos á 1 hora e meia para estudo.</p> | ||
<button className="more-time">Bora!</button> | ||
|
||
</section> | ||
|
||
|
||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Grupes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
.grupe-container { | ||
width: 100%; | ||
background-color: #FFC864; | ||
padding: 10px; | ||
|
||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
} | ||
|
||
.grupe-text { | ||
width: 90%; | ||
} | ||
|
||
.grupe-text h2 { | ||
font-size: 1.6rem; | ||
margin: 25px auto 25px auto; | ||
} | ||
|
||
.grupe-text p { | ||
font-size: 1.2rem; | ||
line-height: 1.4; | ||
|
||
margin: 10px auto 25px auto; | ||
} | ||
|
||
.rotine-info span { | ||
text-transform: uppercase; | ||
|
||
} | ||
|
||
.rotine-info { | ||
font-weight: bold; | ||
color: #1A3059; | ||
|
||
} | ||
.btn-grupes { | ||
display: flex; | ||
flex-direction: column; | ||
|
||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.first-btn-grupes, | ||
.second-btn-grupes { | ||
|
||
|
||
margin: 10px 5px 13px 5px; | ||
} | ||
|
||
.btn-grupes button { | ||
|
||
width: 10rem; | ||
height: 2.2rem; | ||
border-radius: 25px; | ||
|
||
margin: 15px auto; | ||
|
||
background-color: #24285b; | ||
border: transparent; | ||
color: #ff907d; | ||
|
||
font-size: 1.2rem; | ||
font-weight: bolder; | ||
|
||
} | ||
|
||
.btn-grupes p { | ||
font-size: 1.2rem; | ||
font-weight: bold; | ||
} | ||
|
||
.btn-grupes button:hover { | ||
cursor: pointer; | ||
opacity: 0.8; | ||
} | ||
|
||
@media (min-width: 900px) { | ||
.grupe-container { | ||
|
||
flex-direction: row; | ||
|
||
} | ||
|
||
.grupe-text { | ||
|
||
width: 50%; | ||
|
||
margin: 15px 25px 15px auto; | ||
} | ||
|
||
.btn-grupes { | ||
width: 50%; | ||
} | ||
|
||
.grupe-text h2 { | ||
font-size: 2rem; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters