mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
included all dev and production files for new redesign. the index file has a different layout than the interior page files. for more in-depth look into how these are set up, look in the templates > includes & layouts folders. I used .liquid files to create these pages, and all the content for the files are in there, with the base layout stuff in the includes and layout files. check the converted-html folder to see how everything should look. (test it on an android phone. should look good now) :)
18 lines
713 B
SCSS
18 lines
713 B
SCSS
// ----------------------------------------------------------------
|
|
// Basic Styling: Media Elements
|
|
// ----------------------------------------------------------------
|
|
|
|
// If an image doesn't load, make the alt text noticable
|
|
img{color:$c-Required; font-style:italic}
|
|
|
|
// Make sure these guys don't extend beyond their parent containers
|
|
audio, img, object, embed, video{max-width:100%}
|
|
|
|
// Give HTML5 elements inline-block display, which is also not defined in ie8/9
|
|
audio, canvas, video{display:inline-block}
|
|
|
|
// Prevents browsers from displaying 'audio' w/out controls and fixes height for iOS 5
|
|
audio:not([controls]){display:none; height:0}
|
|
|
|
// Corrects overflow issue in IE9
|
|
svg:not(:root){overflow:hidden}
|