2015-06-18 19:26:01 +00:00
/ * !
2014-07-28 13:35:53 +00:00
Theme Name : _s
Theme URI : http : / / underscores . me /
Author : Automattic
Author URI : http : / / automattic . com /
Description : Hi . I ' m a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I ' m a theme meant for hacking so don ' t use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That ' s what I ' m here for.
2014-12-31 04:34:46 +00:00
Version : 1 . 0 . 0
2014-07-28 13:35:53 +00:00
License : GNU General Public License v2 or later
2016-12-27 06:34:01 +00:00
License URI : LICENSE
2014-07-28 13:35:53 +00:00
Text Domain : _s
2017-07-14 19:33:27 +00:00
Tags : custom-background , custom-logo , custom-menu , featured-images , threaded-comments , translation-ready
2014-07-28 13:35:53 +00:00
This theme , like WordPress , is licensed under the GPL .
Use it to make something cool , have fun , and share what you ' ve learned with others.
2016-02-08 20:36:23 +00:00
_s is based on Underscores http : / / underscores . me / , ( C ) 2012-2016 Automattic , Inc .
2015-04-25 06:26:52 +00:00
Underscores is distributed under the terms of the GNU GPL v2 or later .
2014-07-28 13:35:53 +00:00
Normalize rather than Reset.
The reset we used was a mix of Normalize, the Paul Irish reset,
sprinkled with some blueprint.css, and base styles. It was hard to
maintain and just seemed outdated (setting the base font-size to 10px
instead of 16px, among other things).
Normalize sets saner defaults and is generally just not as disruptive
as a full reset.
The code was added as is, has only its comments stripped (for now), and
is not mixed with any styles to make future updates to it as easy as
possible.
See #3, #44, #174, #267, #617.
2014-12-30 00:28:19 +00:00
Normalizing styles have been helped along thanks to the fine work of
2016-12-27 06:34:01 +00:00
Nicolas Gallagher and Jonathan Neal http : / / necolas . github . io / normalize . css /
2014-07-28 13:35:53 +00:00
* /
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
> > > TABLE OF CONTENTS :
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Normalize
# Typography
# Elements
# Forms
# Navigation
# # Links
# # Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
2016-07-05 04:04:11 +00:00
# # Posts and pages
2015-03-21 08:30:00 +00:00
# # Comments
# Infinite scroll
# Media
# # Captions
# # Galleries
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " variables-site/variables-site " ;
@import " mixins/mixins-master " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Normalize
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
Normalize rather than Reset.
The reset we used was a mix of Normalize, the Paul Irish reset,
sprinkled with some blueprint.css, and base styles. It was hard to
maintain and just seemed outdated (setting the base font-size to 10px
instead of 16px, among other things).
Normalize sets saner defaults and is generally just not as disruptive
as a full reset.
The code was added as is, has only its comments stripped (for now), and
is not mixed with any styles to make future updates to it as easy as
possible.
See #3, #44, #174, #267, #617.
2014-12-30 00:28:19 +00:00
@import " normalize " ;
2014-07-28 13:35:53 +00:00
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Typography
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " typography/typography " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Elements
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " elements/elements " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Forms
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " forms/forms " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Navigation
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " navigation/navigation " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Accessibility
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " modules/accessibility " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Alignments
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " modules/alignments " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Clearings
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " modules/clearings " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Widgets
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " site/secondary/widgets " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Content
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " site/site " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Infinite scroll
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " modules/infinite-scroll " ;
/ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2015-03-21 08:30:00 +00:00
# Media
2014-07-28 13:35:53 +00:00
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * /
@import " media/media " ;