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) :)
24 lines
967 B
SCSS
24 lines
967 B
SCSS
// ----------------------------------------------------------------
|
|
// Basic Style Normalizing/Resetting
|
|
// ----------------------------------------------------------------
|
|
|
|
// Make a smarter Box Model
|
|
*, *:before, *:after{@include box-sizing(border-box)}
|
|
|
|
// Just to make sure the HTML doesn't act like a bitch
|
|
html{overflow-y:scroll; min-height:100%}
|
|
|
|
// Default body text styling
|
|
body{font-size:100%; line-height:1.5}
|
|
|
|
// Reset the Standard Tags
|
|
body, blockquote, h1, h2, h3, h4, h5, h6, p, pre, form, fieldset, img,
|
|
legend, table, th, td, caption, hr{border:0; margin:0; outline:0; padding:0}
|
|
|
|
// Easy re-styling for <hr /> tags
|
|
hr{border-top:1px solid #ddd; display:block; height:1px; margin:$spacing*6 0}
|
|
|
|
@import 'base-HTML5'; // Styling for HTML5 sepecific elements/selectors
|
|
@import 'base-Media'; // Styling for base media elements
|
|
@import 'typography'; // Styling for base typographical elements
|
|
@import 'base-Form'; // Styling for base form elements
|