mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-04-05 19:44:17 +00:00
* added portfolio, mentors and management YAML files to be used in templating * fixed issue with landing page not working properly in mobile view * removed annoying page style that was applied to everything * improved text sizes in various views * reworked mentors view styles * rearranged landing page vector graphics to match their meaning more * code style improvements
72 lines
1.0 KiB
SCSS
72 lines
1.0 KiB
SCSS
.centered-text {
|
|
text-align: center;
|
|
}
|
|
|
|
#contact-helpdesk {
|
|
display : flex;
|
|
justify-content : center;
|
|
align-items : center;
|
|
|
|
#contact-helpdesk-banner-container {
|
|
background : black;
|
|
padding : 3rem;
|
|
}
|
|
|
|
#contact-helpdesk-banner {
|
|
display : block;
|
|
width : 100%;
|
|
height : auto;
|
|
}
|
|
#contact-helpdesk-banner-container, #contact-helpdesk-info {
|
|
flex : 1;
|
|
margin : 0 2rem;
|
|
}
|
|
}
|
|
|
|
#contact-management {
|
|
|
|
#container {
|
|
display : flex;
|
|
flex-direction : row;
|
|
flex-wrap : wrap;
|
|
justify-content : center;
|
|
|
|
.person {
|
|
margin-left : 2rem;
|
|
margin-right : 2rem;
|
|
margin-bottom : 5rem;
|
|
|
|
img {
|
|
display : block;
|
|
width : 100%;
|
|
height : auto;
|
|
}
|
|
|
|
* {
|
|
margin: 0.2rem 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#contact-main {
|
|
* {
|
|
margin: 0.2rem 0;
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width : 900px) {
|
|
|
|
#contact-helpdesk {
|
|
flex-direction : column;
|
|
|
|
#contact-helpdesk-banner-container, #contact-helpdesk-info {
|
|
margin : 0;
|
|
}
|
|
}
|
|
|
|
|
|
}
|