Skip to content
Merged
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
11 changes: 9 additions & 2 deletions pyconbalkan/core/static/css/components/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@media (max-width: 1280px) {
.page__content {
width: 70%;
width: 90%;
height: auto;
padding: 40px 0;
margin: 0 auto;
Expand All @@ -22,6 +22,13 @@
margin-right: 80px;
}

@media (max-width: 1024px) {

.column {
margin-right: 0;
}
}

.column:nth-of-type(2) {
margin-right: 0;
}
Expand Down Expand Up @@ -52,7 +59,7 @@
margin-left: 0;
margin-bottom: 20px;
}

.column ul li {
padding-left: 0px;
}
Expand Down
30 changes: 27 additions & 3 deletions pyconbalkan/core/static/css/components/person.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
.sponsor {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-content: flex-start;
align-items: center;
justify-content: center;
}

@media (max-width: 1024px) {
Expand All @@ -32,12 +32,28 @@
overflow: hidden;
}

@media (max-width: 1024px) {
.speaker__image,
.organizer__image,
.sponsor__image {
margin: 0;
}
}

.speaker__details,
.organizer__details,
.sponsor__details {
flex: 1;
}

@media (max-width: 1024px) {
.speaker__details,
.organizer__details,
.sponsor__details {
text-align: justify;
}
}

.speaker__image img,
.organizer__image img,
.sponsor__image img {
Expand All @@ -62,7 +78,15 @@
.speaker__description,
.organizer__description,
.sponsor__description {
margin-bottom: 20px;
margin-bottom: 20px;
}

@media (max-width: 1024px) {
.speaker__description,
.organizer__description,
.sponsor__description {
margin-bottom: 0;
}
}

.social__links {
Expand Down
9 changes: 1 addition & 8 deletions pyconbalkan/core/static/css/components/sponsors.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}

.keynote-item {
position: relative;
position: relative;
}

.sponsor-list {
Expand All @@ -35,13 +35,6 @@
color: #F3D66C;
}

@media (max-width: 1024px) {
.sponsor {
width: 350px;
height: 300px;
}
}

.sponsor img {
display: block;
object-fit: cover;
Expand Down