mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-21 12:37:49 +00:00
Added first implementation for Helpdesk view
This commit is contained in:
123
_sass/helpdesk.scss
Normal file
123
_sass/helpdesk.scss
Normal file
@@ -0,0 +1,123 @@
|
||||
.page {
|
||||
display : flex;
|
||||
flex-direction : column;
|
||||
flex : 1;
|
||||
width : 85vw;
|
||||
max-width : 1200px;
|
||||
margin : 0 auto;
|
||||
}
|
||||
|
||||
.page * {
|
||||
margin-top : 5px;
|
||||
margin-bottom : 5px;
|
||||
}
|
||||
|
||||
#helpdesk-banner {
|
||||
//background-image : url("helpdesk-a-bg.jpg");
|
||||
background : black;
|
||||
display : flex;
|
||||
flex-direction : row;
|
||||
flex : 1;
|
||||
justify-content : center;
|
||||
align-items : center;
|
||||
text-align : center;
|
||||
|
||||
h3, h5 {
|
||||
color : white;
|
||||
}
|
||||
|
||||
.emphasis-text-bold {
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
.emphasis-text-color {
|
||||
color : $color-primary;
|
||||
}
|
||||
|
||||
#helpdesk-banner-logo {
|
||||
display : block;
|
||||
width : 100%;
|
||||
height : auto;
|
||||
}
|
||||
|
||||
#banner-image, #banner-text {
|
||||
width : 50%;
|
||||
}
|
||||
|
||||
#banner-image {
|
||||
padding : 25px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#helpdesk-location-mapstuff {
|
||||
display : flex;
|
||||
align-items : center;
|
||||
justify-content : center;
|
||||
|
||||
.siema, #map {
|
||||
width : 50%;
|
||||
max-height : 300px;
|
||||
margin : 20px;
|
||||
}
|
||||
#map {
|
||||
height : 60vh;
|
||||
max-height : 300px;
|
||||
}
|
||||
}
|
||||
|
||||
#helpdesk-contacts {
|
||||
display : flex;
|
||||
flex-direction : row;
|
||||
|
||||
.subtext {
|
||||
opacity : 0.7;
|
||||
}
|
||||
|
||||
#helpdesk-opening-times, #helpdesk-contactssss {
|
||||
flex : 1;
|
||||
padding : 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width : 900px) {
|
||||
#helpdesk-banner {
|
||||
flex-direction : column;
|
||||
|
||||
#banner-image, #banner-text {
|
||||
width : 100%;
|
||||
}
|
||||
}
|
||||
|
||||
table {
|
||||
tr:first-child {
|
||||
max-width : 30%;
|
||||
|
||||
}
|
||||
td, th {
|
||||
padding : 0.5rem 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
#helpdesk-location-mapstuff {
|
||||
flex-direction : column;
|
||||
.siema, #map {
|
||||
width : 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#helpdesk-contacts {
|
||||
flex-direction : column;
|
||||
}
|
||||
}
|
||||
|
||||
table {
|
||||
th td {
|
||||
font-weight : bold;
|
||||
}
|
||||
tr:first-child {
|
||||
max-width : 40%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user