mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
clean up of various html files clean up of sass / css files fix width/height issues with responsive website gallery update responsive layout issues with website gallery update max-sizing of input-Area class to 90% updated broken positioning of footer icons
33 lines
644 B
SCSS
33 lines
644 B
SCSS
// ----------------------------------------------------------------
|
|
// Project Specific: Browse Websites Gallery
|
|
// ----------------------------------------------------------------
|
|
|
|
.website-Gallery{
|
|
list-style:none;
|
|
margin:0;
|
|
padding:0;
|
|
|
|
li{
|
|
@extend .col-25;
|
|
float:left;
|
|
margin-bottom:$spacing*2;
|
|
|
|
@media (max-device-width:480px), screen and (max-width:800px){width:50%}
|
|
}
|
|
|
|
a{
|
|
padding:0 $spacing*2;
|
|
display:block;
|
|
}
|
|
}
|
|
|
|
.neo-SS{
|
|
background:#fff;
|
|
@include box-shadow($bs-4);
|
|
display:block;
|
|
height:auto!important;
|
|
max-height:125px;
|
|
max-width:208px;
|
|
padding:$spacing*2;
|
|
width:100%;
|
|
}
|