mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 10:17:23 -05:00
* Apply prettier to css, js, html, md, ts, and yml As a followup I will add prettier to the .pre-commit config. This patch is 100% generated by prettier. I used a forked version of prettier that understands the py-script tag. See https://github.com/hoodmane/pyscript-prettier-precommit for more info. * Apply old pre-commit * Revert some problems * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert some changes * More changes * Fix pre-commit * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
92 lines
1.4 KiB
CSS
92 lines
1.4 KiB
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.pyscript {
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
.code {
|
|
display: flex;
|
|
position: absolute;
|
|
right: 0px;
|
|
z-index: 9998;
|
|
top: 7rem;
|
|
}
|
|
|
|
@media (max-width: 1300px) {
|
|
.code:has(> .code-section-visible) {
|
|
width: 90%;
|
|
/* Absolute position is messing up the layout on small screens */
|
|
right: 70px;
|
|
}
|
|
}
|
|
|
|
.code-section-hidden {
|
|
width: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.code-section-visible {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
background-color: rgb(45 46 53 / 90%);
|
|
padding: 1rem;
|
|
border-radius: 10px 0px 0px 10px;
|
|
color: #c6c6c8;
|
|
}
|
|
.code-section-visible p {
|
|
margin: 0;
|
|
font-style: italic;
|
|
font-size: small;
|
|
}
|
|
|
|
.language-html,
|
|
.language-python {
|
|
float: left;
|
|
}
|
|
|
|
#view-code-button {
|
|
writing-mode: tb-rl;
|
|
text-orientation: sideways-right;
|
|
background-color: #1d1d22;
|
|
color: white;
|
|
padding: 0.5rem;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
height: 81px;
|
|
}
|
|
|
|
nav {
|
|
position: sticky;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.logo {
|
|
padding-right: 10px;
|
|
font-size: 28px;
|
|
height: 30px;
|
|
max-width: inherit;
|
|
}
|
|
|
|
.title {
|
|
text-decoration: none;
|
|
text-decoration-line: none;
|
|
text-decoration-style: initial;
|
|
text-decoration-color: initial;
|
|
font-weight: 400;
|
|
font-size: 1.5em;
|
|
line-height: 2em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.app-header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 1rem;
|
|
}
|