Skip to content

Commit

Permalink
se crea section de formacion
Browse files Browse the repository at this point in the history
  • Loading branch information
SamirFront-End committed Jan 10, 2024
1 parent 1833f10 commit 35b8916
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 0 deletions.
26 changes: 26 additions & 0 deletions assets/css/section_training/container_training.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.container-training {
background-image: url(../../images/patter_services.svg);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
position: absolute;
top: 2300px;
}
.title-training {
font-family: var(--font1);
text-align: center;
}

/* ===>>> SCREEN TABLET <<<=== */
@media (min-width: 769px) and (max-width: 1115px) {
.container-training {
top: 2400px;
}
}

/* ===>>> SCREEN MOBILE <<<=== */
@media (max-width: 768px) {
.container-training {
top: 2350px;
}
}
11 changes: 11 additions & 0 deletions assets/css/section_training/schools/container_schools.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.container-schools {
width: 90%;
margin: auto;
display: flex;
flex-flow: row wrap;
gap: 1.25%;
justify-content: space-between;
}
.logo-school {
width: 100%;
}
15 changes: 15 additions & 0 deletions assets/css/section_training/schools/schools.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.school {
width: 15%;
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
}

/* ===>>> SCREEN TABLET <<<=== */
@media (max-width: 1115px) {
.school {
width: 40%;
margin: 10px;
}
}
Binary file added assets/images/logos/logo-md-austral-1.png
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 assets/images/logos/viewlogo1-at-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
<link rel="stylesheet" href="assets/css/section_skills/cards/skill_card.css">
<link rel="stylesheet" href="assets/css/section_skills/cards/header_skill_card.css">
<link rel="stylesheet" href="assets/css/section_skills/cards/title_skill_card.css">
<link rel="stylesheet" href="assets/css/section_training/container_training.css">
<link rel="stylesheet" href="assets/css/section_training/schools/container_schools.css">
<link rel="stylesheet" href="assets/css/section_training/schools/schools.css">
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/76750b34bb.js" crossorigin="anonymous"></script>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
Expand Down Expand Up @@ -308,6 +311,31 @@ <h1 class="h1-skill-card">
</div>
</div>
</section>
<section class="container-training">
<h1 class="title-training">
Formación
</h1>
<div class="container-schools">
<div class="school">
<img src="assets/images/logos/coursera.svg" alt="Coursera" class="logo-school">
</div>
<div class="school">
<img src="assets/images/logos/logo-md-austral-1.png" alt="Universidad Austral Argentina" class="logo-school">
</div>
<div class="school">
<img src="assets/images/logos/University_of_Michigan-Logo.wine.svg" alt="University of Michigan" class="logo-school">
</div>
<div class="school">
<img src="assets/images/logos/logo-oit.svg" alt="Organizacion internacional de trabajo" class="logo-school">
</div>
<div class="school">
<img src="assets/images/logos/alura-logo.1686744883.svg" alt="Alura Latam" class="logo-school">
</div>
<div class="school">
<img src="assets/images/logos/viewlogo1-at-2x.png" alt="Fundacion View" class="logo-school">
</div>
</div>
</section>
</body>
<script src="js/menu_mobile.js"></script>
</html>

0 comments on commit 35b8916

Please sign in to comment.