-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
documentation with temple-ui preview
- Loading branch information
1 parent
dd80d58
commit 88a5a7e
Showing
156 changed files
with
29,623 additions
and
22,321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,211 @@ | ||
.container { padding: 20px; } | ||
.error pre { | ||
border: 1px solid #222222; | ||
font-family: Courier, monospace; | ||
line-height: 22px; | ||
padding: 20px; | ||
white-space: pre-wrap; | ||
word-wrap: break-word; | ||
} | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
width: 100%; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6, p { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
html-head:not(:defined) { opacity: 0; } | ||
html-header:not(:defined) { opacity: 0; } | ||
panel-layout:not(:defined) { opacity: 0; } | ||
panel-head:not(:defined) { opacity: 0; } | ||
panel-main:not(:defined) { opacity: 0; } | ||
tui-button:not(:defined) { opacity: 0; } | ||
ide-app:not(:defined) { opacity: 0; } | ||
ide-code:not(:defined) { opacity: 0; } | ||
ide-preview:not(:defined) { opacity: 0; } | ||
i18n-translate:not(:defined) { opacity: 0; } | ||
:root { | ||
--black: #000000; | ||
--white: #FFFFFF; | ||
--info: #1474FC; | ||
--error: #DC3545; | ||
--warning: #FF7B07; | ||
--success: #28A745; | ||
--muted: #999999; | ||
} | ||
|
||
.light { | ||
--bg-0: #EFEFEF; | ||
--bg-1: #CFCFCF; | ||
--bg-2: #AFAFAF; | ||
--bg-3: #8F8F8F; | ||
--bg-4: #6F6F6F; | ||
--bd-0: #EFEFEF; | ||
--bd-1: #CFCFCF; | ||
--bd-2: #AFAFAF; | ||
--bd-3: #8F8F8F; | ||
--bd-4: #6F6F6F; | ||
--bg-inverse: #242424; | ||
--tx-0: #000000; | ||
--tx-1: #242424; | ||
--tx-inverse: #CFCFCF; | ||
} | ||
|
||
.dark { | ||
--bg-0: #121212; | ||
--bg-1: #222222; | ||
--bg-2: #323232; | ||
--bg-3: #424242; | ||
--bg-4: #525252; | ||
--bd-0: #121212; | ||
--bd-1: #222222; | ||
--bd-2: #323232; | ||
--bd-3: #424242; | ||
--bd-4: #525252; | ||
--bg-inverse: #DBDBDB; | ||
--tx-0: #FFFFFF; | ||
--tx-1: #CFCFCF; | ||
--tx-inverse: #222222; | ||
} | ||
html-head { display: block; } | ||
html-header { display: block; } | ||
panel-layout { display: block; } | ||
panel-head { display: block; } | ||
panel-main { display: block; } | ||
tui-button { display: block; } | ||
ide-app { display: block; } | ||
ide-code { display: block; } | ||
ide-preview { display: block; } | ||
i18n-translate { display: block; } | ||
.arial { font-family: Arial, sans-serif; } | ||
.courier { font-family: 'Courier New', Courier, monospace; } | ||
.none { display: none; } | ||
.block { display: block; } | ||
.flex { display: flex; } | ||
.inline { display: inline; } | ||
.inline-block { display: inline-block; } | ||
.transparent { opacity: 0; } | ||
.relative { position: relative; } | ||
.absolute { position: absolute; } | ||
.static { position: static; } | ||
.bottom-0 { bottom: 0px; } | ||
.bottom-60 { bottom: 60px; } | ||
.left-0 { left: 0px; } | ||
.left-226 { left: 226px; } | ||
.left-0 { left: 0px; } | ||
.left-226 { left: 226px; } | ||
.right-0 { right: 0px; } | ||
.right-200 { right: 200px; } | ||
.right-0 { right: 0px; } | ||
.right-200 { right: 200px; } | ||
.top-0 { top: 0px; } | ||
.top-60 { top: 60px; } | ||
.flex-grow { flex-grow: 1; } | ||
.flex-center { align-items: center; justify-content: center; } | ||
.flex-center-y { align-items: center; } | ||
.gap-10 { gap: 10px; } | ||
.scroll-auto { overflow: auto; } | ||
.scroll-hidden { overflow: hidden; } | ||
.scroll-x-auto { overflow-x: auto; } | ||
.h-full { height: 100%; } | ||
.h-26 { height: 26px; } | ||
.h-7289 { height: 7289px; } | ||
.h-905496362982981723 { height: 905496362982981723px; } | ||
.h-60 { height: 60px; } | ||
.h-999999 { height: 999999px; } | ||
.h-10 { height: 10px; } | ||
.h-22 { height: 22px; } | ||
.vh { height: 100vh; } | ||
.w-full { width: 100%; } | ||
.w-0 { width: 0px; } | ||
.w-10 { width: 10px; } | ||
.w-calc-full-40 { width: calc(100% - 40px); } | ||
.bg-primary { background-color: var(--primary) !important; } | ||
.bg-secondary { background-color: var(--secondary) !important; } | ||
.bg-black { background-color: var(--black) !important; } | ||
.bg-white { background-color: var(--white) !important; } | ||
.bg-info { background-color: var(--info) !important; } | ||
.bg-error { background-color: var(--error) !important; } | ||
.bg-warning { background-color: var(--warning) !important; } | ||
.bg-success { background-color: var(--success) !important; } | ||
.bg-muted { background-color: var(--muted) !important; } | ||
.bg-t-1 { background-color: var(--bg-1) !important; } | ||
.bg-t-0 { background-color: var(--bg-0) !important; } | ||
.bg-h-cb3837 { background-color: #cb3837; } | ||
.bg-h-7289da { background-color: #7289da; } | ||
.bg-h-999999 { background-color: #999999; } | ||
.tx-5 { font-size: 5px; } | ||
.tx-16 { font-size: 16px; } | ||
.tx-lg { font-size: 16px; } | ||
.tx-5xl { font-size: 26px; } | ||
.tx-center { text-align: center; } | ||
.tx-uppercase { text-transform: uppercase; } | ||
.tx-word-wrap { word-wrap: break-word; } | ||
.tx-prewrap { white-space: pre-wrap; } | ||
.tx-nodecor { text-decoration: none; } | ||
.tx-lh-22 { line-height: 22px; } | ||
.tx-primary { color: var(--primary) !important; } | ||
.tx-secondary { color: var(--secondary) !important; } | ||
.tx-black { color: var(--black) !important; } | ||
.tx-white { color: var(--white) !important; } | ||
.tx-info { color: var(--info) !important; } | ||
.tx-error { color: var(--error) !important; } | ||
.tx-warning { color: var(--warning) !important; } | ||
.tx-success { color: var(--success) !important; } | ||
.tx-muted { color: var(--muted) !important; } | ||
.tx-t-1 { color: var(--tx-1) !important; } | ||
.bd-solid { border-style: solid; } | ||
.bd-primary { border-color: var(--primary) !important; } | ||
.bd-secondary { border-color: var(--secondary) !important; } | ||
.bd-info { border-color: var(--info) !important; } | ||
.bd-error { border-color: var(--error) !important; } | ||
.bd-warning { border-color: var(--warning) !important; } | ||
.bd-success { border-color: var(--success) !important; } | ||
.bd-muted { border-color: var(--muted) !important; } | ||
.curved { border-radius: 4px; } | ||
.rounded { border-radius: 12px; } | ||
.pill { border-radius: 10000px; } | ||
.m-0 { margin: 0px; } | ||
.m-0 { margin: 0px; } | ||
.m-60 { margin: 60px; } | ||
.ml-10 { margin-left: 10px; } | ||
.ml-5 { margin-left: 5px; } | ||
.mr-10 { margin-right: 10px; } | ||
.p-5 { padding: 5px; } | ||
.p-0 { padding: 0px; } | ||
.p-60 { padding: 60px; } | ||
.p-10 { padding: 10px; } | ||
.p-10 { padding: 10px; } | ||
.p-20 { padding: 20px; } | ||
.pb-20 { padding-bottom: 20px; } | ||
.pr-10 { padding-right: 10px; } | ||
.pt-10 { padding-top: 10px; } | ||
.px-20 { padding-left: 20px; padding-right: 20px; } | ||
.px-4 { padding-left: 4px; padding-right: 4px; } | ||
.px-8 { padding-left: 8px; padding-right: 8px; } | ||
.px-12 { padding-left: 12px; padding-right: 12px; } | ||
.px-16 { padding-left: 16px; padding-right: 16px; } | ||
.px-24 { padding-left: 24px; padding-right: 24px; } | ||
.px-28 { padding-left: 28px; padding-right: 28px; } | ||
.px-32 { padding-left: 32px; padding-right: 32px; } | ||
.px-36 { padding-left: 36px; padding-right: 36px; } | ||
.py-15 { padding-top: 15px; padding-bottom: 15px; } | ||
.py-5 { padding-top: 5px; padding-bottom: 5px; } | ||
.py-2 { padding-top: 2px; padding-bottom: 2px; } | ||
.py-4 { padding-top: 4px; padding-bottom: 4px; } | ||
.py-6 { padding-top: 6px; padding-bottom: 6px; } | ||
.py-8 { padding-top: 8px; padding-bottom: 8px; } | ||
.py-10 { padding-top: 10px; padding-bottom: 10px; } | ||
.py-12 { padding-top: 12px; padding-bottom: 12px; } | ||
.py-14 { padding-top: 14px; padding-bottom: 14px; } | ||
.py-16 { padding-top: 16px; padding-bottom: 16px; } | ||
.py-18 { padding-top: 18px; padding-bottom: 18px; } | ||
.cursor-pointer { cursor: pointer; } | ||
.transition-500 { transition: 500ms; } | ||
.shadow-0-0-10-0-0-0-5 { box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.5); } | ||
@media (max-width: 767px) { | ||
.md-inline-block { display: inline-block; } | ||
.md-left-0 { left: 0px; } | ||
.md-left-226 { left: 226px; } | ||
.md-right-0 { right: 0px; } | ||
.md-right-200 { right: 200px; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.