You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
860 B
SCSS
51 lines
860 B
SCSS
.greeting-text{
|
|
flex:1;
|
|
}
|
|
.greeting-image{
|
|
.image-box{
|
|
margin:5px;
|
|
width:251px;
|
|
}
|
|
.link-box{
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1700px) {
|
|
.greeting-image{
|
|
.link-box{
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
/************ BreakPoints ************/
|
|
// Small devices (landscape phones, 576px and up)
|
|
@media (max-width: 576px) {
|
|
}
|
|
|
|
// Medium devices (tablets, 768px and up)
|
|
@media (max-width: 768px) {
|
|
|
|
}
|
|
|
|
// Large devices (desktops, 992px and up)
|
|
@media (max-width: 992px) {
|
|
.greeting-image{
|
|
width: 100%;
|
|
|
|
.image-box{
|
|
margin:0;
|
|
width:100%
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// X-Large devices (large desktops, 1200px and up)
|
|
@media (max-width: 1200px) {
|
|
|
|
}
|
|
|
|
// XX-Large devices (larger desktops, 1400px and up)
|
|
@media (max-width: 1400px) {
|
|
} |