2017-10-31 16:21:27 +00:00
/ * !
2016-12-24 23:28:36 +00:00
Theme Name : _s
2017-10-10 17:29:36 +00:00
Theme URI : https : / / underscores . me /
2012-01-07 03:25:13 +00:00
Author : Automattic
2017-10-10 17:29:36 +00:00
Author URI : https : / / automattic . com /
2012-01-11 04:04:23 +00:00
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
2013-04-21 23:58:10 +00:00
License : GNU General Public License v2 or later
2016-07-15 15:32:59 +00:00
License URI : LICENSE
2013-07-30 18:58:13 +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
2012-01-13 20:10:17 +00:00
This theme , like WordPress , is licensed under the GPL .
2020-04-08 21:36:58 +00:00
Use it to make something cool , have fun , and share what you ' ve learned .
2013-04-04 18:01:38 +00:00
2020-04-07 20:18:45 +00:00
_s is based on Underscores https : / / underscores . me / , ( C ) 2012-2020 Automattic , Inc .
2015-04-25 06:26:52 +00:00
Underscores is distributed under the terms of the GNU GPL v2 or later .
2012-01-13 20:10:17 +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
2017-10-10 17:29:36 +00:00
Nicolas Gallagher and Jonathan Neal https : / / necolas . github . io / normalize . css /
2012-01-07 03:25:13 +00:00
* /
2020-04-08 21:36:58 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
> > > TABLE OF CONTENTS :
----------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Normalize
# Typography
# Elements
# Forms
# Navigation
# # Links
# # Menus
# Accessibility
# Alignments
# Widgets
# Content
2015-12-08 16:28:48 +00:00
# # Posts and pages
2015-03-21 08:30:00 +00:00
# # Comments
# Infinite scroll
# Media
# # Captions
# # Galleries
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Normalize
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +00:00
2020-04-24 10:59:13 +00:00
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2018-02-28 14:22:10 +00:00
/ * Document
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ * *
* 1 . Correct the line height in all browsers .
* 2 . Prevent adjustments of font size after orientation changes in iOS .
* /
2012-01-13 20:10:17 +00:00
html {
2020-04-08 21:36:58 +00:00
line-height : 1 . 15 ;
-webkit-text-size-adjust : 100 % ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * Sections
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ * *
* Remove the margin in all browsers .
* /
2012-01-13 20:10:17 +00:00
body {
2017-08-30 11:14:55 +00:00
margin : 0 ;
}
2014-07-29 20:54:08 +00:00
2020-04-24 10:59:13 +00:00
/ * *
* Render the ` main ` element consistently in IE .
* /
main {
display : block ;
}
2018-02-28 14:22:10 +00:00
/ * *
* Correct the font size and margin on ` h1 ` elements within ` section ` and
* ` article ` contexts in Chrome , Firefox , and Safari .
* /
h1 {
font-size : 2em ;
margin : 0 . 67em 0 ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * Grouping content
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ * *
* 1 . Add the correct box sizing in Firefox .
* 2 . Show the overflow in Edge and IE .
* /
hr {
2020-04-08 21:36:58 +00:00
box-sizing : content-box ;
height : 0 ;
overflow : visible ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Correct the inheritance and scaling of font size in all browsers .
* 2 . Correct the odd ` em ` font sizing in all browsers .
* /
pre {
2020-04-08 21:36:58 +00:00
font-family : monospace , monospace ;
font-size : 1em ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * Text-level semantics
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ * *
* Remove the gray background on active links in IE 10 .
* /
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
a {
2017-08-30 11:14:55 +00:00
background-color : transparent ;
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Remove the bottom border in Chrome 57-
* 2 . Add the correct text decoration in Chrome , Edge , IE , Opera , and Safari .
* /
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
abbr [ title ] {
2020-04-08 21:36:58 +00:00
border-bottom : none ;
text-decoration : underline ;
text-decoration : underline dotted ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * *
* Add the correct font weight in Chrome , Edge , and Safari .
* /
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
b ,
strong {
2018-02-28 14:22:10 +00:00
font-weight : bolder ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Correct the inheritance and scaling of font size in all browsers .
* 2 . Correct the odd ` em ` font sizing in all browsers .
* /
code ,
kbd ,
samp {
2020-04-08 21:36:58 +00:00
font-family : monospace , monospace ;
font-size : 1em ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Add the correct font size in all browsers .
* /
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
small {
2017-08-30 11:14:55 +00:00
font-size : 80 % ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* Prevent ` sub ` and ` sup ` elements from affecting the line height in
* all browsers .
* /
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
sub ,
sup {
2017-08-30 11:14:55 +00:00
font-size : 75 % ;
line-height : 0 ;
position : relative ;
vertical-align : baseline ;
}
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
sub {
2017-08-30 11:14:55 +00:00
bottom : -0 . 25em ;
}
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
2018-02-28 14:22:10 +00:00
sup {
top : -0 . 5em ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * Embedded content
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
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
2018-02-28 14:22:10 +00:00
/ * *
* Remove the border on images inside links in IE 10 .
* /
img {
border-style : none ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * Forms
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
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
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Change the font styles in all browsers .
* 2 . Remove the margin in Firefox and Safari .
* /
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
button ,
input ,
optgroup ,
select ,
textarea {
2020-04-08 21:36:58 +00:00
font-family : inherit ;
font-size : 100 % ;
line-height : 1 . 15 ;
margin : 0 ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Show the overflow in IE .
* 1 . Show the overflow in Edge .
* /
button ,
2020-04-08 21:36:58 +00:00
input {
2017-08-30 11:14:55 +00:00
overflow : visible ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* Remove the inheritance of text transform in Edge , Firefox , and IE .
* 1 . Remove the inheritance of text transform in Firefox .
* /
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
button ,
2020-04-08 21:36:58 +00:00
select {
2017-08-30 11:14:55 +00:00
text-transform : none ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* Correct the inability to style clickable types in iOS and Safari .
* /
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
button ,
2018-02-28 14:22:10 +00:00
[ type = "button" ] ,
[ type = "reset" ] ,
[ type = "submit" ] {
2017-08-30 11:14:55 +00:00
-webkit-appearance : button ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* Remove the inner border and padding in Firefox .
* /
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
button :: -moz-focus-inner ,
2018-02-28 14:22:10 +00:00
[ type = "button" ] :: -moz-focus-inner ,
[ type = "reset" ] :: -moz-focus-inner ,
[ type = "submit" ] :: -moz-focus-inner {
border-style : none ;
2017-08-30 11:14:55 +00:00
padding : 0 ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* Restore the focus styles unset by the previous rule .
* /
button : -moz-focusring ,
[ type = "button" ] : -moz-focusring ,
[ type = "reset" ] : -moz-focusring ,
[ type = "submit" ] : -moz-focusring {
outline : 1px dotted ButtonText ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Correct the padding in Firefox .
* /
fieldset {
padding : 0 . 35em 0 . 75em 0 . 625em ;
}
/ * *
* 1 . Correct the text wrapping in Edge and IE .
* 2 . Correct the color inheritance from ` fieldset ` elements in IE .
* 3 . Remove the padding so developers are not caught out when they zero out
* ` fieldset ` elements in all browsers .
* /
legend {
2020-04-08 21:36:58 +00:00
box-sizing : border-box ;
color : inherit ;
display : table ;
max-width : 100 % ;
padding : 0 ;
white-space : normal ;
2018-02-28 14:22:10 +00:00
}
/ * *
* Add the correct vertical alignment in Chrome , Firefox , and Opera .
* /
progress {
vertical-align : baseline ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Remove the default vertical scrollbar in IE 10 + .
* /
textarea {
overflow : auto ;
}
/ * *
* 1 . Add the correct box sizing in IE 10 .
* 2 . Remove the padding in IE 10 .
* /
[ type = "checkbox" ] ,
[ type = "radio" ] {
2020-04-08 21:36:58 +00:00
box-sizing : border-box ;
padding : 0 ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Correct the cursor style of increment and decrement buttons in Chrome .
* /
[ type = "number" ] :: -webkit-inner-spin-button ,
[ type = "number" ] :: -webkit-outer-spin-button {
2017-08-30 11:14:55 +00:00
height : auto ;
}
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
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Correct the odd appearance in Chrome and Safari .
* 2 . Correct the outline style in Safari .
* /
[ type = "search" ] {
2020-04-08 21:36:58 +00:00
-webkit-appearance : textfield ;
outline-offset : -2px ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Remove the inner padding in Chrome and Safari on macOS .
* /
[ type = "search" ] :: -webkit-search-decoration {
-webkit-appearance : none ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* 1 . Correct the inability to style clickable types in iOS and Safari .
* 2 . Change font properties to ` inherit ` in Safari .
* /
:: -webkit-file-upload-button {
2020-04-08 21:36:58 +00:00
-webkit-appearance : button ;
font : inherit ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * Interactive
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ *
* Add the correct display in Edge , IE 10 + , and Firefox .
* /
details {
display : block ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ *
* Add the correct display in all browsers .
* /
summary {
display : list-item ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * Misc
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * /
/ * *
* Add the correct display in IE 10 + .
* /
template {
display : none ;
2017-08-30 11:14:55 +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
2018-02-28 14:22:10 +00:00
/ * *
* Add the correct display in IE 10 .
* /
[ hidden ] {
display : none ;
2017-08-30 11:14:55 +00:00
}
2012-01-13 20:10:17 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Typography
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2012-01-13 20:10:17 +00:00
body ,
button ,
input ,
select ,
2017-06-17 12:25:49 +00:00
optgroup ,
2012-01-13 20:10:17 +00:00
textarea {
2017-08-30 11:14:55 +00:00
color : # 404040 ;
2020-04-24 12:36:40 +00:00
font-family : -apple-system , BlinkMacSystemFont , "Segoe UI" , Roboto , Oxygen-Sans , Ubuntu , Cantarell , "Helvetica Neue" , sans-serif ;
2017-08-30 11:14:55 +00:00
font-size : 1rem ;
line-height : 1 . 5 ;
}
2017-08-01 13:21:13 +00:00
2020-04-08 21:36:58 +00:00
h1 ,
h2 ,
h3 ,
h4 ,
h5 ,
h6 {
2017-08-30 11:14:55 +00:00
clear : both ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
p {
2017-08-30 11:14:55 +00:00
margin-bottom : 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2020-04-08 21:36:58 +00:00
dfn ,
cite ,
em ,
i {
2017-08-30 11:14:55 +00:00
font-style : italic ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
blockquote {
2017-08-30 11:14:55 +00:00
margin : 0 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
address {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
pre {
2017-08-30 11:14:55 +00:00
background : # eee ;
2020-04-08 21:36:58 +00:00
font-family : "Courier 10 Pitch" , courier , monospace ;
2017-08-30 11:14:55 +00:00
font-size : 0 . 9375rem ;
line-height : 1 . 6 ;
margin-bottom : 1 . 6em ;
max-width : 100 % ;
overflow : auto ;
padding : 1 . 6em ;
}
2017-08-01 13:21:13 +00:00
2020-04-08 21:36:58 +00:00
code ,
kbd ,
tt ,
var {
font-family : monaco , consolas , "Andale Mono" , "DejaVu Sans Mono" , monospace ;
2017-08-30 11:14:55 +00:00
font-size : 0 . 9375rem ;
}
2017-08-01 13:21:13 +00:00
2020-04-08 21:36:58 +00:00
abbr ,
acronym {
2017-08-30 11:14:55 +00:00
border-bottom : 1px dotted # 666 ;
cursor : help ;
}
2017-08-01 13:21:13 +00:00
2020-04-08 21:36:58 +00:00
mark ,
ins {
2017-08-30 11:14:55 +00:00
background : # fff9c0 ;
text-decoration : none ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
big {
2017-08-30 11:14:55 +00:00
font-size : 125 % ;
}
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Elements
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2014-12-31 20:27:05 +00:00
2020-04-08 21:36:58 +00:00
/ * Inherit box-sizing to more easily change it ' s value on a component level .
@ link http : / / css-tricks . com / inheriting-box-sizing-probably-slightly-better-best-practice / * /
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
* ,
2020-04-08 21:36:58 +00:00
* :: before ,
* :: after {
2017-08-30 11:14:55 +00:00
box-sizing : inherit ;
}
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
2020-04-08 21:36:58 +00:00
html {
box-sizing : border-box ;
}
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
body {
2017-08-30 11:14:55 +00:00
background : # fff ;
}
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
2014-02-07 12:16:08 +00:00
hr {
2017-08-30 11:14:55 +00:00
background-color : # ccc ;
border : 0 ;
height : 1px ;
margin-bottom : 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2020-04-08 21:36:58 +00:00
ul ,
ol {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em 3em ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
ul {
2017-08-30 11:14:55 +00:00
list-style : disc ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
ol {
2017-08-30 11:14:55 +00:00
list-style : decimal ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
li > ul ,
li > ol {
2017-08-30 11:14:55 +00:00
margin-bottom : 0 ;
margin-left : 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
dt {
2020-04-08 21:36:58 +00:00
font-weight : 700 ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
dd {
2017-08-30 11:14:55 +00:00
margin : 0 1 . 5em 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2014-03-06 02:41:56 +00:00
img {
2017-08-30 11:14:55 +00:00
height : auto ;
max-width : 100 % ;
}
2014-07-29 20:54:08 +00:00
2016-02-08 01:57:58 +00:00
figure {
2017-08-30 11:14:55 +00:00
margin : 1em 0 ;
}
2016-02-08 01:57:58 +00:00
2012-01-13 20:10:17 +00:00
table {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em ;
width : 100 % ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Forms
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2012-01-13 20:10:17 +00:00
button ,
2013-10-21 01:05:11 +00:00
input [ type = "button" ] ,
2012-01-13 20:10:17 +00:00
input [ type = "reset" ] ,
input [ type = "submit" ] {
2017-08-30 11:14:55 +00:00
border : 1px solid ;
border-color : # ccc # ccc # bbb ;
border-radius : 3px ;
background : # e6e6e6 ;
color : rgba ( 0 , 0 , 0 , 0 . 8 ) ;
font-size : 0 . 75rem ;
line-height : 1 ;
2020-04-08 21:36:58 +00:00
padding : 0 . 6em 1em 0 . 4em ;
2017-08-30 11:14:55 +00:00
}
button : hover ,
input [ type = "button" ] : hover ,
input [ type = "reset" ] : hover ,
input [ type = "submit" ] : hover {
border-color : # ccc # bbb # aaa ;
}
2020-04-08 21:36:58 +00:00
button : active ,
button : focus ,
2017-08-30 11:14:55 +00:00
input [ type = "button" ] : active ,
input [ type = "button" ] : focus ,
input [ type = "reset" ] : active ,
input [ type = "reset" ] : focus ,
input [ type = "submit" ] : active ,
input [ type = "submit" ] : focus {
border-color : # aaa # bbb # bbb ;
}
2014-07-29 20:54:08 +00:00
2013-02-27 22:47:03 +00:00
input [ type = "text" ] ,
input [ type = "email" ] ,
2013-08-06 22:57:17 +00:00
input [ type = "url" ] ,
2013-02-27 22:47:03 +00:00
input [ type = "password" ] ,
input [ type = "search" ] ,
2015-12-08 16:28:48 +00:00
input [ type = "number" ] ,
input [ type = "tel" ] ,
input [ type = "range" ] ,
input [ type = "date" ] ,
input [ type = "month" ] ,
input [ type = "week" ] ,
input [ type = "time" ] ,
input [ type = "datetime" ] ,
input [ type = "datetime-local" ] ,
input [ type = "color" ] ,
2012-01-13 20:10:17 +00:00
textarea {
2017-08-30 11:14:55 +00:00
color : # 666 ;
border : 1px solid # ccc ;
border-radius : 3px ;
padding : 3px ;
}
input [ type = "text" ] : focus ,
input [ type = "email" ] : focus ,
input [ type = "url" ] : focus ,
input [ type = "password" ] : focus ,
input [ type = "search" ] : focus ,
input [ type = "number" ] : focus ,
input [ type = "tel" ] : focus ,
input [ type = "range" ] : focus ,
input [ type = "date" ] : focus ,
input [ type = "month" ] : focus ,
input [ type = "week" ] : focus ,
input [ type = "time" ] : focus ,
input [ type = "datetime" ] : focus ,
input [ type = "datetime-local" ] : focus ,
input [ type = "color" ] : focus ,
textarea : focus {
color : # 111 ;
}
2014-07-29 20:54:08 +00:00
2015-12-08 16:28:48 +00:00
select {
2017-08-30 11:14:55 +00:00
border : 1px solid # ccc ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
textarea {
2017-08-30 11:14:55 +00:00
width : 100 % ;
}
2012-01-13 20:10:17 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Navigation
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Links
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2012-01-13 20:10:17 +00:00
a {
2020-04-08 21:36:58 +00:00
color : # 4169e1 ;
2017-08-30 11:14:55 +00:00
}
a : visited {
2020-04-08 21:36:58 +00:00
color : # 800080 ;
2017-08-30 11:14:55 +00:00
}
2020-04-08 21:36:58 +00:00
a : hover ,
a : focus ,
a : active {
color : # 191970 ;
2017-08-30 11:14:55 +00:00
}
a : focus {
outline : thin dotted ;
}
2020-04-08 21:36:58 +00:00
a : hover ,
a : active {
2017-08-30 11:14:55 +00:00
outline : 0 ;
}
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
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Menus
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2013-07-11 20:17:12 +00:00
. main-navigation {
2017-08-30 11:14:55 +00:00
display : block ;
width : 100 % ;
}
. main-navigation ul {
display : none ;
list-style : none ;
margin : 0 ;
padding-left : 0 ;
}
. main-navigation ul ul {
box-shadow : 0 3px 3px rgba ( 0 , 0 , 0 , 0 . 2 ) ;
float : left ;
position : absolute ;
top : 100 % ;
left : -999em ;
z-index : 99999 ;
}
. main-navigation ul ul ul {
left : -999em ;
top : 0 ;
}
. main-navigation ul ul li : hover > ul ,
. main-navigation ul ul li . focus > ul {
2018-01-02 22:57:02 +00:00
display : block ;
left : auto ;
2017-08-30 11:14:55 +00:00
}
. main-navigation ul ul a {
width : 200px ;
}
. main-navigation ul li : hover > ul ,
. main-navigation ul li . focus > ul {
left : auto ;
}
. main-navigation li {
position : relative ;
}
. main-navigation a {
display : block ;
text-decoration : none ;
}
2014-07-29 20:54:08 +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
/* Small menu. */
2014-08-17 15:07:59 +00:00
. menu-toggle ,
. main-navigation . toggled ul {
2017-08-30 11:14:55 +00:00
display : block ;
}
2014-07-29 20:54:08 +00:00
2014-08-17 15:07:59 +00:00
@ media screen and ( min-width : 37 . 5em ) {
2020-04-08 21:36:58 +00:00
2017-08-30 11:14:55 +00:00
. menu-toggle {
display : none ;
}
2020-04-08 21:36:58 +00:00
2017-08-30 11:14:55 +00:00
. main-navigation ul {
2018-01-02 22:57:02 +00:00
display : flex ;
2017-08-30 11:14:55 +00:00
}
}
2017-08-01 13:21:13 +00:00
2020-04-08 21:36:58 +00:00
. site-main . comment-navigation ,
. site-main
. posts-navigation ,
. site-main
2017-08-01 13:21:13 +00:00
. post-navigation {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em ;
2018-01-02 22:57:02 +00:00
}
. comment-navigation . nav-links ,
. posts-navigation . nav-links ,
. post-navigation . nav-links {
display : flex ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2014-02-10 17:35:23 +00:00
. comment-navigation . nav-previous ,
2014-12-19 01:34:18 +00:00
. posts-navigation . nav-previous ,
2014-02-10 17:35:23 +00:00
. post-navigation . nav-previous {
2018-01-02 22:57:02 +00:00
flex : 1 0 50 % ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2014-02-10 17:35:23 +00:00
. comment-navigation . nav-next ,
2014-12-19 01:34:18 +00:00
. posts-navigation . nav-next ,
2014-02-10 17:35:23 +00:00
. post-navigation . nav-next {
2018-01-02 22:57:02 +00:00
text-align : end ;
flex : 1 0 50 % ;
2017-08-30 11:14:55 +00:00
}
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Accessibility
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +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
/* Text meant only for screen readers. */
2014-02-07 12:16:08 +00:00
. screen-reader-text {
2017-10-22 16:00:06 +00:00
border : 0 ;
2017-08-30 11:14:55 +00:00
clip : rect ( 1px , 1px , 1px , 1px ) ;
2017-10-22 16:00:06 +00:00
clip-path : inset ( 50 % ) ;
2017-08-30 11:14:55 +00:00
height : 1px ;
2017-10-22 16:00:06 +00:00
margin : -1px ;
2017-08-30 11:14:55 +00:00
overflow : hidden ;
2017-10-22 16:00:06 +00:00
padding : 0 ;
position : absolute ! important ;
width : 1px ;
2020-04-08 21:36:58 +00:00
word-wrap : normal ! important ;
2017-08-30 11:14:55 +00:00
}
. screen-reader-text : focus {
background-color : # f1f1f1 ;
border-radius : 3px ;
box-shadow : 0 0 2px 2px rgba ( 0 , 0 , 0 , 0 . 6 ) ;
clip : auto ! important ;
2017-10-22 16:00:06 +00:00
clip-path : none ;
2017-08-30 11:14:55 +00:00
color : # 21759b ;
display : block ;
font-size : 0 . 875rem ;
2020-04-08 21:36:58 +00:00
font-weight : 700 ;
2017-08-30 11:14:55 +00:00
height : auto ;
left : 5px ;
line-height : normal ;
padding : 15px 23px 14px ;
text-decoration : none ;
top : 5px ;
width : auto ;
z-index : 100000 ;
}
2014-02-07 12:16:08 +00:00
2015-11-11 19:54:08 +00:00
/* Do not show the outline on the skip link target. */
2018-01-02 22:57:02 +00:00
# primary [ tabindex = "-1" ] : focus {
2017-08-30 11:14:55 +00:00
outline : 0 ;
}
2015-11-11 19:54:08 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Alignments
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
. alignleft {
2017-08-30 11:14:55 +00:00
float : left ;
margin-right : 1 . 5em ;
2018-06-27 08:29:10 +00:00
margin-bottom : 1 . 5em ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
. alignright {
2017-08-30 11:14:55 +00:00
float : right ;
margin-left : 1 . 5em ;
2018-06-27 08:29:10 +00:00
margin-bottom : 1 . 5em ;
2017-08-30 11:14:55 +00:00
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
. aligncenter {
2017-08-30 11:14:55 +00:00
clear : both ;
display : block ;
margin-left : auto ;
margin-right : auto ;
2018-06-27 08:29:10 +00:00
margin-bottom : 1 . 5em ;
2017-08-30 11:14:55 +00:00
}
2012-02-03 14:15:28 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Widgets
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
. widget {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em ;
}
. widget select {
max-width : 100 % ;
}
2013-06-17 03:29:17 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Content
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Posts and pages
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2012-02-07 21:15:27 +00:00
. sticky {
2017-08-30 11:14:55 +00:00
display : block ;
}
2014-07-29 20:54:08 +00:00
2018-05-30 12:01:09 +00:00
. post ,
. page {
2017-08-30 11:14:55 +00:00
margin : 0 0 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2014-06-15 11:20:06 +00:00
. updated : not ( . published ) {
2017-08-30 11:14:55 +00:00
display : none ;
}
2014-07-29 20:54:08 +00:00
2013-07-11 19:18:47 +00:00
. page-content ,
2012-01-13 20:10:17 +00:00
. entry-content ,
. entry-summary {
2017-08-30 11:14:55 +00:00
margin : 1 . 5em 0 0 ;
}
2014-07-29 20:54:08 +00:00
2012-01-13 20:10:17 +00:00
. page-links {
2017-08-30 11:14:55 +00:00
clear : both ;
margin : 0 0 1 . 5em ;
}
2012-01-13 20:10:17 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Comments
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
. comment-content a {
2017-08-30 11:14:55 +00:00
word-wrap : break-word ;
}
2014-07-29 20:54:08 +00:00
2014-02-07 12:16:08 +00:00
. bypostauthor {
2017-08-30 11:14:55 +00:00
display : block ;
}
2012-02-10 20:49:23 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Infinite scroll
2014-02-07 12:16:08 +00:00
-------------------------------------------------------------- * /
2020-04-08 21:36:58 +00:00
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
2017-08-01 13:21:13 +00:00
. infinite-scroll . posts-navigation ,
. infinite-scroll . neverending . site-footer {
2017-08-30 11:14:55 +00:00
display : none ;
}
2014-07-29 20:54:08 +00:00
2020-04-08 21:36:58 +00:00
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
2014-02-07 12:16:08 +00:00
. infinity-end . neverending . site-footer {
2017-08-30 11:14:55 +00:00
display : block ;
}
2012-01-13 20:10:17 +00:00
2014-02-07 12:16:08 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# Media
2014-02-07 12:16:08 +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
. page-content . wp-smiley ,
. entry-content . wp-smiley ,
. comment-content . wp-smiley {
2017-08-30 11:14:55 +00:00
border : none ;
margin-bottom : 0 ;
margin-top : 0 ;
padding : 0 ;
}
2014-07-29 20:54:08 +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
/* Make sure embeds and iframes fit their containers. */
2014-04-11 20:24:38 +00:00
embed ,
iframe ,
object {
2017-08-30 11:14:55 +00:00
max-width : 100 % ;
}
2014-04-11 20:24:38 +00:00
2017-06-26 22:47:12 +00:00
/* Make sure logo link wraps around logo image. */
2017-07-14 18:14:20 +00:00
. custom-logo-link {
2017-08-30 11:14:55 +00:00
display : inline-block ;
}
2017-06-26 22:47:12 +00:00
2014-04-11 20:24:38 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Captions
2014-04-11 20:24:38 +00:00
-------------------------------------------------------------- * /
2012-01-13 20:10:17 +00:00
. wp-caption {
2017-08-30 11:14:55 +00:00
margin-bottom : 1 . 5em ;
max-width : 100 % ;
}
. wp-caption img [ class * = "wp-image-" ] {
display : block ;
margin-left : auto ;
margin-right : auto ;
}
. wp-caption . wp-caption-text {
margin : 0 . 8075em 0 ;
}
2014-04-11 20:24:38 +00:00
2015-08-05 19:30:03 +00:00
. wp-caption-text {
2017-08-30 11:14:55 +00:00
text-align : center ;
}
2015-08-05 19:30:03 +00:00
2014-03-06 05:41:15 +00:00
/ * --------------------------------------------------------------
2015-03-21 08:30:00 +00:00
# # Galleries
2014-03-06 05:41:15 +00:00
-------------------------------------------------------------- * /
. gallery {
2017-08-30 11:14:55 +00:00
margin-bottom : 1 . 5em ;
}
2014-07-29 20:54:08 +00:00
2014-03-06 05:41:15 +00:00
. gallery-item {
2017-08-30 11:14:55 +00:00
display : inline-block ;
text-align : center ;
vertical-align : top ;
width : 100 % ;
}
. gallery-columns-2 . gallery-item {
max-width : 50 % ;
}
. gallery-columns-3 . gallery-item {
max-width : 33 . 33 % ;
}
. gallery-columns-4 . gallery-item {
max-width : 25 % ;
}
. gallery-columns-5 . gallery-item {
max-width : 20 % ;
}
. gallery-columns-6 . gallery-item {
max-width : 16 . 66 % ;
}
. gallery-columns-7 . gallery-item {
max-width : 14 . 28 % ;
}
. gallery-columns-8 . gallery-item {
max-width : 12 . 5 % ;
}
. gallery-columns-9 . gallery-item {
max-width : 11 . 11 % ;
}
2014-07-29 20:54:08 +00:00
. gallery-caption {
2017-08-30 11:14:55 +00:00
display : block ;
}