1
0
mirror of synced 2025-12-26 05:02:55 -05:00
Files
docs/stylesheets/type.scss
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

49 lines
585 B
SCSS

/* Global type styles
------------------------------------------------------------------------------*/
h1,
h2,
h3,
h4 {
a {
color: $gray-900;
}
}
summary {
outline: none;
}
.markdown-body {
summary {
h1,
h2,
h3,
h4,
h5,
h6 {
display: inline-block;
margin-top: 10px;
margin-bottom: 10px;
p {
margin: 0;
padding: 0;
}
}
}
}
// all h3 headers that are links should be blue-500
// except those on each product's toc
h3 a {
color: $blue-500;
.directory-toc & {
color: $gray-900;
}
}