Skip to content
Snippets Groups Projects
Commit f7d6bd6a authored by Otto Zaiser's avatar Otto Zaiser
Browse files

Arreglando cta, presentaciones y agregando eventos

parent 1d87f09a
No related branches found
No related tags found
No related merge requests found
...@@ -146,4 +146,10 @@ table[role="presentation"] img{ ...@@ -146,4 +146,10 @@ table[role="presentation"] img{
.tituloTabla{ .tituloTabla{
font-weight: bold; font-weight: bold;
}
.view-presentaciones{
.views-field-field-ppt, .views-field-field-certificado{
text-align: center;
}
} }
\ No newline at end of file
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
max-width: 600px; max-width: 600px;
padding: 0 50px; padding: 0 50px;
} }
.field--type-link{
display: inline-block;
}
.btn-primary { .btn-primary {
color: $primaryColor; color: $primaryColor;
background-color: $blanco; background-color: $blanco;
...@@ -68,4 +71,14 @@ ...@@ -68,4 +71,14 @@
} }
text-transform: uppercase; text-transform: uppercase;
} }
.btn-default {
color: $blanco;
border-color: $blanco;
&:hover, &:focus{
color: $primaryColor;
background-color: $blanco;
border-color: $blanco;
}
}
} }
\ No newline at end of file
.agenda { .view-eventos {
.evento { .row {
display: flex; display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch; align-items: stretch;
@media (max-width: 992px) { flex-wrap: wrap;
flex-direction: column; }
}
.bloque1 {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
width: 40%;
@media (max-width: 992px) {
width: 100%;
}
@media (max-width: 424px) {
flex-direction: column;
}
.info-evento { .evento {
width: 50%;
background: $primaryColor;
padding: 15px;
display: flex;
flex-direction: column;
justify-content: space-between;
@media (max-width: 992px) {
width: 75%;
}
@media (max-width: 424px) {
width: 100%;
}
.fechas { .contentWrapper {
font-size: 2.3em;
color: $blanco;
text-align: right;
line-height: 1em;
text-transform: uppercase;
}
.lugar { border: 1px solid $claro;
text-align: right; border-radius: 4px;
color: $blanco; }
}
}
.thumb { img{
width: 50%; transition: opacity 0.5s ease;
background: lighten($primaryColor, 30); }
background: linear-gradient(0deg, lighten($primaryColor, 30) 0%, $primaryColor 100%); img:hover{
@media (max-width: 992px) { opacity: .85;
width: 25%;
}
@media (max-width: 424px) {
width: 100%;
}
}
} }
.complemento { margin-bottom: 20px;
width: 60%;
padding: 20px; h2 {
display: flex; font-size: 1.1em;
flex-direction: column; margin: 10px;
justify-content: space-between;
@media (max-width: 992px) {
width: 100%;
}
@media (max-width: 424px) {
padding: 10px 10px 10px 0;
}
.titu-evento { &:after {
h2 { content: none;
margin: 0;
padding: 0;
}
} }
}
.views-field-field-fecha-fin {
background: $primaryColor;
color: $blanco;
padding: 4px;
text-align: center;
}
}
.evento-pasado .evento {
img{
filter: grayscale(100%);
opacity: .85;
transition: filter 0.5s ease;
}
img:hover{
filter: grayscale(0%);
opacity: 1;
}
.views-field-field-fecha-fin {
background: $negro;
}
h2 a{
color: $negro;
} }
} }
} }
...@@ -10,3 +10,4 @@ ...@@ -10,3 +10,4 @@
@import 'general/sumate'; @import 'general/sumate';
@import 'general/miembros'; @import 'general/miembros';
@import 'general/faq'; @import 'general/faq';
@import 'general/eventos';
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment