123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* THEME SPECIFIC STYLES */
- .contents {
- color: mc('grey', '800');
- h1 {
- padding-left: 24px;
- color: mc('blue', '800');
- margin-top: 1rem;
- position: relative;
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 2px;
- background: linear-gradient(to right, mc('theme', 'primary'), rgba(mc('theme', 'primary'), 0));
- }
- & + h2, & + h3 {
- margin-top: 8px;
- }
- }
- h2 {
- margin-left: 24px;
- padding: 8px 0 0 0;
- color: mc('grey', '800');
- position: relative;
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(to right, mc('grey', '700'), rgba(mc('grey', '700'), 0));
- }
- & + h3 {
- margin-top: 8px;
- }
- }
- h3 {
- margin-left: 24px;
- padding: 8px 0 0 0;
- color: mc('grey', '700');
- position: relative;
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0));
- }
- }
- p {
- padding: 1rem 24px 0 24px;
- margin: 0;
- text-align: justify;
- }
- code {
- background-color: transparent;
- font-family: 'Source Code Pro', monospace;
- font-weight: normal;
- font-size: 1rem;
- &::before, &::after {
- display: none;
- }
- }
- .prismjs{
- border: none;
- border-radius: 5px;
- box-shadow: initial;
- background-color: mc('grey', '900');
- padding: 1rem 1rem 1rem 3rem;
- margin: 1rem 24px;
- > code {
- box-shadow: initial;
- display: block;
- font-size: .85rem;
- font-family: 'Source Code Pro', monospace;
- &:after, &:before {
- content: initial;
- letter-spacing: initial;
- }
- }
- }
- }
|