mirror of
https://github.com/kuohuanhuan/x-markdown-css.git
synced 2024-11-25 06:18:19 +00:00
Compare commits
20 Commits
v0.0.0-202
...
v0.0.0-202
Author | SHA1 | Date | |
---|---|---|---|
af46b8e083
|
|||
e2aeb767cd
|
|||
6616b76811
|
|||
8be8e8793e
|
|||
2aa806938e
|
|||
ebac47e0d7
|
|||
61079f3627
|
|||
e9c955a8f1
|
|||
3db644fa05
|
|||
ca1ccd9b4b
|
|||
f9ffa18565
|
|||
0dc71d9a54
|
|||
5fc2c0a068
|
|||
aa8823c6eb
|
|||
61b7e4ef05
|
|||
cc6bea29ef
|
|||
d95065f5d2
|
|||
1bb7e502ac
|
|||
de50484e3b
|
|||
6fbb266d10
|
@ -1,4 +1,4 @@
|
|||||||
# Browserslist <https://browsersl.ist>
|
# Browserslist <https://browsersl.ist>
|
||||||
|
|
||||||
defaults
|
defaults
|
||||||
since 2012
|
since 2015
|
||||||
|
3
.stylelintignore
Normal file
3
.stylelintignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
**/*.js
|
||||||
|
dist/*.css
|
||||||
|
node_modules
|
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"ignoreDisables": true,
|
||||||
"extends": "stylelint-config-standard-scss",
|
"extends": "stylelint-config-standard-scss",
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"stylelint-scss",
|
"stylelint-scss",
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
module.exports = (grunt) ->
|
module.exports = (grunt) ->
|
||||||
require('load-grunt-tasks')(grunt)
|
# Load Grunt Tasks
|
||||||
|
require('load-grunt-tasks') grunt
|
||||||
|
|
||||||
grunt.initConfig(
|
# Project Configuration
|
||||||
|
grunt.initConfig
|
||||||
# NPM Package Declare
|
# NPM Package Declare
|
||||||
pkg: grunt.file.readJSON('package.json')
|
pkg: grunt.file.readJSON('package.json')
|
||||||
# Sass Compile
|
# Sass Compile
|
||||||
@ -26,19 +28,23 @@ module.exports = (grunt) ->
|
|||||||
annotation: 'dist/'
|
annotation: 'dist/'
|
||||||
exp:
|
exp:
|
||||||
options:
|
options:
|
||||||
processors: [require('autoprefixer')()]
|
processors: [
|
||||||
|
require('postcss-preset-env')()
|
||||||
|
require('autoprefixer')()
|
||||||
|
]
|
||||||
src: 'dist/bundle.css'
|
src: 'dist/bundle.css'
|
||||||
dest: 'dist/bundle.css'
|
dest: 'dist/bundle.css'
|
||||||
min:
|
min:
|
||||||
options:
|
options:
|
||||||
processors: [
|
processors: [
|
||||||
|
require('postcss-preset-env')()
|
||||||
require('autoprefixer')()
|
require('autoprefixer')()
|
||||||
require('cssnano')(
|
require('cssnano')(preset: 'default')
|
||||||
preset: 'default'
|
|
||||||
)
|
|
||||||
]
|
]
|
||||||
src: 'dist/bundle.min.css'
|
src: 'dist/bundle.min.css'
|
||||||
dest: 'dist/bundle.min.css'
|
dest: 'dist/bundle.min.css'
|
||||||
)
|
# Register Grunt Tasks
|
||||||
|
grunt.registerTask 'build', [
|
||||||
grunt.registerTask('build', ['sass', 'postcss'])
|
'sass'
|
||||||
|
'postcss'
|
||||||
|
]
|
||||||
|
1032
package-lock.json
generated
1032
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "x-markdown-css",
|
"name": "x-markdown-css",
|
||||||
"version": "0.0.0-20230228.13",
|
"version": "0.0.0-20230301.3",
|
||||||
"description": "A simple and customizable Markdown CSS for everyone.",
|
"description": "A simple and customizable Markdown CSS for everyone.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"markdown",
|
"markdown",
|
||||||
@ -49,6 +49,7 @@
|
|||||||
"grunt-sass": "^3.1.0",
|
"grunt-sass": "^3.1.0",
|
||||||
"load-grunt-tasks": "^5.1.0",
|
"load-grunt-tasks": "^5.1.0",
|
||||||
"postcss": "^8.4.21",
|
"postcss": "^8.4.21",
|
||||||
|
"postcss-preset-env": "^8.0.1",
|
||||||
"stylelint": "^15.2.0",
|
"stylelint": "^15.2.0",
|
||||||
"stylelint-config-standard-scss": "^7.0.1",
|
"stylelint-config-standard-scss": "^7.0.1",
|
||||||
"stylelint-order": "^6.0.2",
|
"stylelint-order": "^6.0.2",
|
||||||
|
1
src/scss/_partial/_all.scss
Normal file
1
src/scss/_partial/_all.scss
Normal file
@ -0,0 +1 @@
|
|||||||
|
@import 'title', 'text', 'link', 'code', 'quote', 'figure', 'list', 'table', 'media';
|
35
src/scss/_partial/code.scss
Normal file
35
src/scss/_partial/code.scss
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
code {
|
||||||
|
font-size: .85rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--xm-c-dark);
|
||||||
|
&::before, &::after {
|
||||||
|
content: '`';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
overflow-x: auto;
|
||||||
|
margin-top: 1.75rem;
|
||||||
|
padding-top: .85rem, 1.15rem;
|
||||||
|
font-size: .85rem;
|
||||||
|
color: var(--xm-c-pre);
|
||||||
|
line-height: 1.75;
|
||||||
|
margin-bottom: 1.75rem;
|
||||||
|
border-radius: .375rem;
|
||||||
|
code {
|
||||||
|
padding: 0;
|
||||||
|
font-size: inherit;
|
||||||
|
font-family: inherit;
|
||||||
|
font-weight: 400;
|
||||||
|
color: inherit;
|
||||||
|
background: transparent;
|
||||||
|
border-width: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
line-height: inherit;
|
||||||
|
&::before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
6
src/scss/_partial/container.scss
Normal file
6
src/scss/_partial/container.scss
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
@mixin container {
|
||||||
|
max-width: fit-content;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: var(--xm-c-general);
|
||||||
|
line-height: 1.75;
|
||||||
|
}
|
14
src/scss/_partial/figure.scss
Normal file
14
src/scss/_partial/figure.scss
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
figure {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
figcaption {
|
||||||
|
margin-top: .85rem;
|
||||||
|
font-size: .85rem;
|
||||||
|
color: var(--xm-c-figcaption);
|
||||||
|
line-height: 1.45;
|
||||||
|
}
|
||||||
|
> * {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
8
src/scss/_partial/link.scss
Normal file
8
src/scss/_partial/link.scss
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
a {
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: none;
|
||||||
|
color: var(--xm-c-darker);
|
||||||
|
code {
|
||||||
|
color: var(--xm-c-code);
|
||||||
|
}
|
||||||
|
}
|
46
src/scss/_partial/list.scss
Normal file
46
src/scss/_partial/list.scss
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
li {
|
||||||
|
margin-top: .5rem;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
}
|
||||||
|
ol {
|
||||||
|
margin-top: 1.25rem;
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
list-style-type: none;
|
||||||
|
> li {
|
||||||
|
position: relative;
|
||||||
|
padding-left: 1.75rem;
|
||||||
|
&::before {
|
||||||
|
content: counter(list-item, decimal) '.';
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
color: var(--xm-c-ol-counter);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
margin-top: 1.25rem;
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
list-style-type: none;
|
||||||
|
> li {
|
||||||
|
position: relative;
|
||||||
|
padding-left: 1.75rem;
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: .685rem;
|
||||||
|
left: .25rem;
|
||||||
|
width: .375rem;
|
||||||
|
height: .375rem;
|
||||||
|
background-color: var(--xm-c-ul-counter);
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ul ul,
|
||||||
|
ul ol,
|
||||||
|
ol ul,
|
||||||
|
ol ol {
|
||||||
|
margin-top: .75rem;
|
||||||
|
margin-bottom: .75rem;
|
||||||
|
}
|
5
src/scss/_partial/media.scss
Normal file
5
src/scss/_partial/media.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
img,
|
||||||
|
video {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
19
src/scss/_partial/quote.scss
Normal file
19
src/scss/_partial/quote.scss
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
blockquote,
|
||||||
|
q {
|
||||||
|
margin-top: 1.65rem;
|
||||||
|
margin-bottom: 1.65rem;
|
||||||
|
padding-left: 1rem;
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: italic;
|
||||||
|
color: inherit;
|
||||||
|
border-left: .25rem solid var(--xm-c-blockquote-border);
|
||||||
|
quotes: '\201C''\201D''\2018''\2019';
|
||||||
|
p {
|
||||||
|
&:first-of-type::before {
|
||||||
|
content: open-quote;
|
||||||
|
}
|
||||||
|
&:last-of-type::after {
|
||||||
|
content: close-quote;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
46
src/scss/_partial/table.scss
Normal file
46
src/scss/_partial/table.scss
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
table {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
width: 100%;
|
||||||
|
table-layout: auto;
|
||||||
|
font-size: .85rem;
|
||||||
|
text-align: left;
|
||||||
|
line-height: 1.75;
|
||||||
|
}
|
||||||
|
thead {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--xm-c-thead);
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-bottom-color: var(--xm-c-thead-border);
|
||||||
|
th {
|
||||||
|
vertical-align: bottom;
|
||||||
|
padding-right: .575rem;
|
||||||
|
padding-bottom: .575rem;
|
||||||
|
padding-left: .575rem;
|
||||||
|
&:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
&:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tbody {
|
||||||
|
tr {
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-bottom-color: var(--xm-c-tr-border);
|
||||||
|
&:last-child {
|
||||||
|
border-bottom-width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
vertical-align: top;
|
||||||
|
padding: .575rem;
|
||||||
|
&:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
&:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
14
src/scss/_partial/text.scss
Normal file
14
src/scss/_partial/text.scss
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
p {
|
||||||
|
margin-top: 1.25rem;
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
}
|
||||||
|
strong {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--xm-c-dark);
|
||||||
|
}
|
||||||
|
b {
|
||||||
|
color: var(--xm-c-dark);
|
||||||
|
}
|
||||||
|
em {
|
||||||
|
color: inherit;
|
||||||
|
}
|
64
src/scss/_partial/title.scss
Normal file
64
src/scss/_partial/title.scss
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
h1 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: .8889rem;
|
||||||
|
font-size: 2.25rem;
|
||||||
|
font-weight: 800;
|
||||||
|
color: var(--xm-c-darker);
|
||||||
|
line-height: 1.15;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
margin-top: 2rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--xm-c-dark);
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
line-height: 1.35;
|
||||||
|
code {
|
||||||
|
font-size: .85rem;
|
||||||
|
}
|
||||||
|
+ * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
margin-top: 1.6rem;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: inherit;
|
||||||
|
margin-bottom: .6rem;
|
||||||
|
line-height: 1.6;
|
||||||
|
opacity: .7;
|
||||||
|
code {
|
||||||
|
font-size: .9rem;
|
||||||
|
}
|
||||||
|
+ * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h4 {
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: inherit;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
+ * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-weight: 500;
|
||||||
|
opacity: .5;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
margin-top: 3rem;
|
||||||
|
border-color: var(--xm-c-hr-border);
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
+ * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
@ -1,267 +1,6 @@
|
|||||||
.markdown-body,
|
@use '_partial/container' as *;
|
||||||
|
|
||||||
.prose {
|
.prose {
|
||||||
max-width: 65ch;
|
@include container;
|
||||||
font-size: 1rem;
|
@import '_partial/all';
|
||||||
color: var(--xm-c-general);
|
|
||||||
line-height: 1.75;
|
|
||||||
code {
|
|
||||||
font-size: .875rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--xm-c-dark);
|
|
||||||
&::before, &::after {
|
|
||||||
content: '`';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-weight: 500;
|
|
||||||
text-decoration: none;
|
|
||||||
color: var(--xm-c-darker);
|
|
||||||
code {
|
|
||||||
color: var(--xm-c-code);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
strong {
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--xm-c-dark);
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
margin-top: .5rem;
|
|
||||||
margin-bottom: .5rem;
|
|
||||||
}
|
|
||||||
ol {
|
|
||||||
margin-top: 1.25rem;
|
|
||||||
margin-bottom: 1.25rem;
|
|
||||||
list-style-type: none;
|
|
||||||
> li {
|
|
||||||
position: relative;
|
|
||||||
padding-left: 1.75rem;
|
|
||||||
&::before {
|
|
||||||
content: counter(list-item, decimal) '.';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
font-weight: 400;
|
|
||||||
color: var(--xm-c-ol-counter);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ul {
|
|
||||||
margin-top: 1.25rem;
|
|
||||||
margin-bottom: 1.25rem;
|
|
||||||
list-style-type: none;
|
|
||||||
> li {
|
|
||||||
position: relative;
|
|
||||||
padding-left: 1.75rem;
|
|
||||||
&::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: calc(.875rem - .1875rem);
|
|
||||||
left: .25rem;
|
|
||||||
width: .375rem;
|
|
||||||
height: .375rem;
|
|
||||||
background-color: var(--xm-c-ul-counter);
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
hr {
|
|
||||||
margin-top: 3rem;
|
|
||||||
border-color: var(--xm-c-hr-border);
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
+ * {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin-top: 1.25rem;
|
|
||||||
margin-bottom: 1.25rem;
|
|
||||||
}
|
|
||||||
blockquote,
|
|
||||||
q {
|
|
||||||
margin-top: 1.6rem;
|
|
||||||
padding-left: 1rem;
|
|
||||||
font-weight: 500;
|
|
||||||
font-style: italic;
|
|
||||||
color: inherit;
|
|
||||||
border-color: var(--xm-c-blockquote-color);
|
|
||||||
border-left-width: .25rem;
|
|
||||||
quotes: '\201C''\201D''\2018''\2019';
|
|
||||||
margin-bottom: 1.6rem;
|
|
||||||
p {
|
|
||||||
&:first-of-type::before {
|
|
||||||
content: open-quote;
|
|
||||||
}
|
|
||||||
&:last-of-type::after {
|
|
||||||
content: close-quote;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: .8889rem;
|
|
||||||
font-size: 2.25rem;
|
|
||||||
font-weight: 800;
|
|
||||||
color: var(--xm-c-darker);
|
|
||||||
line-height: 1.1111;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
margin-top: 2rem;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 700;
|
|
||||||
color: var(--xm-c-dark);
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
line-height: 1.3334;
|
|
||||||
code {
|
|
||||||
font-size: .875rem;
|
|
||||||
}
|
|
||||||
+ * {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
margin-top: 1.6rem;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: inherit;
|
|
||||||
margin-bottom: .6rem;
|
|
||||||
line-height: 1.6;
|
|
||||||
opacity: .7;
|
|
||||||
code {
|
|
||||||
font-size: .9rem;
|
|
||||||
}
|
|
||||||
+ * {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h4 {
|
|
||||||
margin-top: 1.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: inherit;
|
|
||||||
margin-bottom: .5rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
+ * {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
figure {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
figcaption {
|
|
||||||
margin-top: .8571rem;
|
|
||||||
font-size: .875rem;
|
|
||||||
color: var(--xm-c-figcaption);
|
|
||||||
line-height: 1.4286;
|
|
||||||
}
|
|
||||||
> * {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
overflow-x: auto;
|
|
||||||
margin-top: 1.7143rem;
|
|
||||||
padding-top: .8571rem, 1.1429rem;
|
|
||||||
font-size: .875rem;
|
|
||||||
color: var(--xm-c-pre);
|
|
||||||
line-height: 1.7143;
|
|
||||||
margin-bottom: 1.7143rem;
|
|
||||||
border-radius: .375rem;
|
|
||||||
code {
|
|
||||||
padding: 0;
|
|
||||||
font-size: inherit;
|
|
||||||
font-family: inherit;
|
|
||||||
font-weight: 400;
|
|
||||||
color: inherit;
|
|
||||||
background: transparent;
|
|
||||||
border-width: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
line-height: inherit;
|
|
||||||
&::before {
|
|
||||||
content: none;
|
|
||||||
}
|
|
||||||
&::after {
|
|
||||||
content: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
width: 100%;
|
|
||||||
table-layout: auto;
|
|
||||||
font-size: .875rem;
|
|
||||||
text-align: left;
|
|
||||||
line-height: 1.7143;
|
|
||||||
}
|
|
||||||
thead {
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--xm-c-thead);
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-color: var(--xm-c-thead-border);
|
|
||||||
th {
|
|
||||||
vertical-align: bottom;
|
|
||||||
padding-right: .5714rem;
|
|
||||||
padding-bottom: .5714rem;
|
|
||||||
padding-left: .5714rem;
|
|
||||||
&:first-child {
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
&:last-child {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tbody {
|
|
||||||
tr {
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-color: var(--xm-c-tr-border);
|
|
||||||
&:last-child {
|
|
||||||
border-bottom-width: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
td {
|
|
||||||
vertical-align: top;
|
|
||||||
padding: .5714rem;
|
|
||||||
&:first-child {
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
&:last-child {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
video {
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
h6 {
|
|
||||||
text-transform: uppercase;
|
|
||||||
margin-top: 20px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
font-weight: 500;
|
|
||||||
opacity: .5;
|
|
||||||
letter-spacing: 2px;
|
|
||||||
}
|
|
||||||
> :first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
> :last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
b {
|
|
||||||
color: var(--xm-c-dark);
|
|
||||||
}
|
|
||||||
em {
|
|
||||||
color: inherit;
|
|
||||||
}
|
|
||||||
ul ul,
|
|
||||||
ul ol,
|
|
||||||
ol ul,
|
|
||||||
ol ol {
|
|
||||||
margin-top: .75rem;
|
|
||||||
margin-bottom: .75rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user