123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- .blog-editor-container {
- font-size: 20px;
- color: #414141;
- line-height: 1.5;
- * {
- &:focus {
- outline: none;
- }
- }
- .button {
- font-weight: bold;
- display: inline-flex;
- background: transparent;
- border: 0;
- color: $color-black;
- padding: 0.2rem 0.5rem;
- margin-right: 0.2rem;
- border-radius: 3px;
- cursor: pointer;
- background-color: rgba($color-black, 0.1);
- &:hover {
- background-color: rgba($color-black, 0.15);
- }
- }
- .message {
- background-color: rgba($color-black, 0.05);
- color: rgba($color-black, 0.7);
- padding: 1rem;
- border-radius: 6px;
- margin-bottom: 1.5rem;
- font-style: italic;
- }
- }
- .editor {
- position: relative;
- &.editor-squished {
- max-width: 800px;
- margin: 0 auto 5rem auto;
- }
- *.is-empty:nth-child(1)::before,
- *.is-empty:nth-child(2)::before,
- *.is-empty:nth-child(3)::before {
- content: attr(data-empty-text);
- float: left;
- color: #aaa;
- pointer-events: none;
- height: 0;
- font-style: italic;
- }
- &__content {
- word-wrap: break-word;
- * {
- caret-color: currentColor;
- }
- h1 {
- font-size: 50px;
- font-weight: bold;
- }
- h2 {
- font-size: 1.5em;
- // font-weight: bold;
- color: rgba(0,0,0,.54);
- }
- h3 {
- font-size: 1.17em;
- font-weight: bold;
- }
- hr {
- background-color: black;
- }
- pre {
- padding: 0.7rem 1rem;
- border-radius: 5px;
- background: $color-black;
- color: $color-white;
- font-size: 1.1rem;
- overflow-x: auto;
- code {
- display: block;
- }
- }
- p code {
- display: inline-block;
- padding: 0 0.4rem;
- border-radius: 5px;
- font-size: 1.1rem;
- font-weight: bold;
- background: rgba($color-black, 0.1);
- color: rgba($color-black, 0.8);
- }
- p {
- min-height: 30px;
- font-size: 21px;
- line-height: 1.58;
- letter-spacing: -.003em;
- }
- ul {
- list-style: disc;
- }
- ul,
- ol {
- padding-left: 1rem;
- }
- li > p,
- li > ol,
- li > ul {
- margin: 0;
- }
- a {
- color: inherit;
- }
- blockquote {
- border-left: 3px solid rgba($color-black, 0.1);
- color: rgba($color-black, 0.8);
- padding-left: 0.8rem;
- font-style: italic;
- p {
- margin: 0;
- }
- }
- img {
- max-width: 100%;
- border-radius: 3px;
- }
- table {
- border-collapse: collapse;
- table-layout: fixed;
- width: 100%;
- margin: 0;
- overflow: hidden;
- td, th {
- min-width: 1em;
- border: 2px solid $color-grey;
- padding: 3px 5px;
- vertical-align: top;
- box-sizing: border-box;
- position: relative;
- > * {
- margin-bottom: 0;
- }
- }
- th {
- font-weight: bold;
- text-align: left;
- }
- .selectedCell:after {
- z-index: 2;
- position: absolute;
- content: "";
- left: 0; right: 0; top: 0; bottom: 0;
- background: rgba(200, 200, 255, 0.4);
- pointer-events: none;
- }
- .column-resize-handle {
- position: absolute;
- right: -2px; top: 0; bottom: 0;
- width: 4px;
- z-index: 20;
- background-color: #adf;
- pointer-events: none;
- }
- }
- .tableWrapper {
- margin: 1em 0;
- overflow-x: auto;
- }
- .resize-cursor {
- cursor: ew-resize;
- cursor: col-resize;
- }
- }
- pre {
- &::before {
- content: attr(data-language);
- text-transform: uppercase;
- display: block;
- text-align: right;
- font-weight: bold;
- font-size: 0.6rem;
- }
- code {
- .hljs-comment,
- .hljs-quote {
- color: #999999;
- }
- .hljs-variable,
- .hljs-template-variable,
- .hljs-attribute,
- .hljs-tag,
- .hljs-name,
- .hljs-regexp,
- .hljs-link,
- .hljs-name,
- .hljs-selector-id,
- .hljs-selector-class {
- color: #f2777a;
- }
- .hljs-number,
- .hljs-meta,
- .hljs-built_in,
- .hljs-builtin-name,
- .hljs-literal,
- .hljs-type,
- .hljs-params {
- color: #f99157;
- }
- .hljs-string,
- .hljs-symbol,
- .hljs-bullet {
- color: #99cc99;
- }
- .hljs-title,
- .hljs-section {
- color: #ffcc66;
- }
- .hljs-keyword,
- .hljs-selector-tag {
- color: #6699cc;
- }
- .hljs-emphasis {
- font-style: italic;
- }
- .hljs-strong {
- font-weight: 700;
- }
- }
- }
- }
|