mirror of
https://github.com/neocities/neocities.git
synced 2025-07-24 19:38:25 +02:00
streamline CSS, remove google font/cdn dep
This commit is contained in:
parent
ab6abc637e
commit
47344e8bdc
186 changed files with 31689 additions and 1655 deletions
28
sass/_base-sass/_basic.scss
Normal file
28
sass/_base-sass/_basic.scss
Normal file
|
@ -0,0 +1,28 @@
|
|||
// ----------------------------------------------------------------
|
||||
// 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{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
|
||||
|
||||
.tooltip-inner {
|
||||
white-space:pre-wrap;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue