Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
# landing-page

<<<<<<< HEAD
componenti da sviluppare
* Header
* Cover
=======
Componenti da sviluppare:
* Header
* Cover
>>>>>>> 81fb6c0f4ab622ec70747c7bc7e9c8f5a3c63bef
* Banner
* Carousel
* Card-section
* Footer

<<<<<<< HEAD
Ogni studente apre il proprio branch:
nome_componente-nome_cognome

Metodo di sviluppo:
- anallizzare assieme la grafica del componente
- bozza della struttura html (carta)
- sviluppo della struttura html con l'elemento delle classi principale e dei sottocomponenti
- sviluppo dello stile nel file scss della componente
- ottimizzare le proprieta css definite per ogni parte della componente
- sviluppo del componente responsive

creare un commit ogni volta che viene chiusa una parte del task.
=======
Ogni studente apre il prorpio branch:

nome_componente-nome_cognome
Expand All @@ -21,3 +41,4 @@ Metodo di sviluppo:
- sviluppo del componente responsive

Creare un commit ogni volta che viene chiusa una parte del task.
>>>>>>> 81fb6c0f4ab622ec70747c7bc7e9c8f5a3c63bef
Binary file added components/assets/Rectangle 2.1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added components/assets/icon-arrow-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions components/card_section.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../style.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<section class="card-section">
<div class="card-section main-container">
<div class="text-container">
<h3 class="text-container-title">
Lorem ipsum dolor sit amet consectetur adipisici
</h3>
<p class="text-container-desc">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum quisquam quas eaq</p>
</div>
</div>
<div class="button is-bomile">Call to action</div>
<div class="card-section card-container">
<div class="card left">
<h4>
Contra legem facit qui id facit quod lex prohibet.
</h4>
<p>
Cum ceteris in veneratione tui montes, nascetur mus. At nos hinc posthac, sitientis piros Afros. A communi observantia
non est recedendum.
</p>
<div class="button">Call to action</div>
</div>
<div class="card">
<h4>
Contra legem facit qui id facit quod lex prohibet.
</h4>
<p>
Cum ceteris in veneratione tui montes, nascetur mus. At nos hinc posthac, sitientis piros Afros. A communi
observantia
non est recedendum.
</p>
<div class="button">Call to action</div>
</div>
<div class="card">
<h4>
Contra legem facit qui id facit quod lex prohibet.
</h4>
<p>
Cum ceteris in veneratione tui montes, nascetur mus. At nos hinc posthac, sitientis piros Afros. A communi
observantia
non est recedendum.
</p>
<div class="button">Call to action</div>
</div>
</div>
</section>
</body>
</html>
4 changes: 4 additions & 0 deletions style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion styles/base/mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
@media (min-width: $tablet) and (max-width: $desktop - 1px) {
@content;
}
}
}

4 changes: 3 additions & 1 deletion styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
@import "./layouts/container.scss";

//modules
@import "./modules/header.scss";
@import "./modules/header.scss";

@import "./modules/card_section.scss";
3 changes: 3 additions & 0 deletions styles/modules/card_section.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.card-section {
font-family: Arial, Helvetica, sans-serif;
}