Skip to content

Commit

Permalink
Primer commit
Browse files Browse the repository at this point in the history
  • Loading branch information
elmerd22 committed Sep 26, 2024
0 parents commit 7e1d2a1
Show file tree
Hide file tree
Showing 9 changed files with 621 additions and 0 deletions.
129 changes: 129 additions & 0 deletions css/flexbox.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
.headerPrincipal .container {
display: flex;
align-items: center;
justify-content: space-between;
}

.headerPrincipal-nav {
display: flex;
}

.rodapePrincipal-patrocinadores .container {
display: flex;
justify-content: space-between;
}

.rodapePrincipal-patrocinadores-list {
display: flex;
align-items: center;
justify-content: space-around;
width: 70%;
margin-right: 5%;
}

.rodapePrincipal-contatoForm {
width: 25%;
}

.rodapePrincipal-contatoForm-fieldset {
display: flex;
}

.rodapePrincipal-navMap-list {
display: flex;
flex-flow: column wrap;
height: 250px;
}

.contenidoPrincipal-cursos {
display: flex;
flex-wrap: wrap;
}

.contenidoPrincipal-cursos-link {
width: 23%;
margin: 1%;
}

.contenidoPrincipal-cursos-link:nth-child(4n) {
margin-right: 0;
}

.contenidoPrincipal-cursos-link:nth-child(4n+1) {
margin-left: 0;
}

.videoSobre .container {
display: flex;
justify-content: space-between;
}

.videoSobre-sobre {
text-align: center;
display: flex;
flex-direction: column;
flex-grow: 10;
}

.videoSobre-sobre-list {
flex-grow: 1;
}

.videoSobre-video {
flex-grow: 1;
}

/* Responsive */
@media(max-width: 768px) {
.headerPrincipal-nav {
flex-direction: column;
}

.headerPrincipal .container {
flex-direction: column;
align-items: initial;
text-align: center;
}

.contenidoPrincipal-cursos {
flex-direction: column;
}

.contenidoPrincipal-cursos-link {
width: 100%;
}

.rodapePrincipal-navMap-list {
height: auto;
}

.rodapePrincipal-patrocinadores .container {
flex-direction: column;
align-items: center;
}

.rodapePrincipal-patrocinadores-list {
margin: 0;
width: 100%;
}

.rodapePrincipal-contatoForm {
width: 100%;
}

.rodapePrincipal-contatoForm-fieldset {
justify-content: center;
}

.headerPrincipal-nav-link-app {
order: -1;
}

.videoSobre .container {
flex-direction: column;
}

.videoSobre-video {
margin: 0 auto;
}
}
48 changes: 48 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
Loading

0 comments on commit 7e1d2a1

Please sign in to comment.