mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
284 lines
5.7 KiB
CSS
284 lines
5.7 KiB
CSS
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
@import './buttons.css';
|
|
@import './scrollbars.css';
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
word-break: break-word;
|
|
text-decoration: none;
|
|
text-size-adjust: 100%;
|
|
}
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body:not([style]) > * {
|
|
display: none !important;
|
|
}
|
|
body:not([style])::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 44vw;
|
|
top: calc(50% - 7.5vw);
|
|
width: 10vw;
|
|
height: 10vw;
|
|
border: 4px solid rgb(34, 34, 34);
|
|
border-top-color: transparent;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
.notion-dark-theme * {
|
|
outline-color: var(--theme_dark--card-border);
|
|
}
|
|
.notion-light-theme * {
|
|
outline-color: var(--theme_light--card-border);
|
|
}
|
|
*:active {
|
|
outline: none;
|
|
}
|
|
|
|
.notion-dark-theme {
|
|
background: var(--theme_dark--main);
|
|
}
|
|
.notion-light-theme {
|
|
background: var(--theme_light--main);
|
|
}
|
|
|
|
main {
|
|
padding: 1em;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
main section {
|
|
border-radius: 2px;
|
|
padding: 0.75em;
|
|
margin-bottom: 0.75em;
|
|
}
|
|
|
|
/* inline formatting */
|
|
|
|
code {
|
|
border-radius: 0.1em;
|
|
padding: 0.2em 0.4em;
|
|
}
|
|
.notion-dark-theme code {
|
|
font: 0.85em var(--theme_dark--font_code);
|
|
/* color: var(--theme_dark--code_inline-text); */
|
|
background: var(--theme_dark--code_inline-background);
|
|
}
|
|
.notion-light-theme code {
|
|
font: 0.85em var(--theme_light--font_code);
|
|
/* color: var(--theme_light--code_inline-text); */
|
|
background: var(--theme_light--code_inline-background);
|
|
}
|
|
|
|
u {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.notion-dark-theme,
|
|
.notion-dark-theme button {
|
|
color: var(--theme_dark--text);
|
|
font-family: var(--theme_dark--font_sans);
|
|
}
|
|
.notion-light-theme,
|
|
.notion-light-theme button {
|
|
color: var(--theme_light--text);
|
|
font-family: var(--theme_light--font_sans);
|
|
}
|
|
|
|
/* titlebar */
|
|
|
|
#menu-titlebar::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
-webkit-app-region: no-drag;
|
|
top: 0;
|
|
left: 0;
|
|
height: 2px;
|
|
}
|
|
|
|
#menu-titlebar {
|
|
display: flex;
|
|
padding: 0.4em;
|
|
-webkit-app-region: drag;
|
|
}
|
|
#menu-titlebar button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
#menu-titlebar :first-child {
|
|
margin-left: auto;
|
|
}
|
|
.notion-dark-theme #menu-titlebar {
|
|
background: var(--theme_dark--dragarea);
|
|
}
|
|
.notion-light-theme #menu-titlebar {
|
|
background: var(--theme_light--dragarea);
|
|
}
|
|
|
|
/* alerts */
|
|
|
|
#alerts [role='alert'] {
|
|
display: flex;
|
|
}
|
|
#alerts [role='alert']::before {
|
|
content: '!';
|
|
display: block;
|
|
/* margin: auto 0; */
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
padding-right: 0.5rem;
|
|
}
|
|
#alerts [role='alert'] p {
|
|
font-size: 1rem;
|
|
margin: auto 0;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
.notion-dark-theme #alerts [role='alert'] p {
|
|
color: var(--theme_dark--text_ui);
|
|
}
|
|
.notion-light-theme #alerts [role='alert'] p {
|
|
color: var(--theme_light--text_ui);
|
|
}
|
|
|
|
.notion-light-theme #alerts [role='alert']::before {
|
|
color: rgba(0, 0, 0, 0.2);
|
|
}
|
|
.notion-light-theme #alerts [role='alert'] {
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.notion-dark-theme #alerts .error {
|
|
border: 1px solid var(--theme_dark--bg_red);
|
|
background: var(--theme_dark--line_red);
|
|
}
|
|
.notion-dark-theme #alerts .error::before {
|
|
color: var(--theme_dark--bg_red);
|
|
}
|
|
.notion-light-theme #alerts .error {
|
|
background: var(--theme_light--line_red);
|
|
}
|
|
|
|
.notion-dark-theme #alerts .warning {
|
|
border: 1px solid var(--theme_dark--bg_yellow);
|
|
background: var(--theme_dark--line_yellow);
|
|
}
|
|
.notion-dark-theme #alerts .warning::before {
|
|
color: var(--theme_dark--bg_yellow);
|
|
}
|
|
.notion-light-theme #alerts .warning {
|
|
background: var(--theme_light--line_yellow);
|
|
}
|
|
|
|
.notion-dark-theme #alerts .info {
|
|
border: 1px solid var(--theme_dark--bg_blue);
|
|
background: var(--theme_dark--line_blue);
|
|
}
|
|
.notion-dark-theme #alerts .info::before {
|
|
color: var(--theme_dark--bg_blue);
|
|
}
|
|
.notion-light-theme #alerts .info {
|
|
background: var(--theme_light--line_blue);
|
|
}
|
|
|
|
#alerts .success::before {
|
|
content: '✓';
|
|
}
|
|
.notion-dark-theme #alerts .success {
|
|
border: 1px solid var(--theme_dark--bg_green);
|
|
background: var(--theme_dark--line_green);
|
|
}
|
|
.notion-dark-theme #alerts .success::before {
|
|
color: var(--theme_dark--bg_green);
|
|
}
|
|
.notion-light-theme #alerts .success {
|
|
background: var(--theme_light--line_green);
|
|
}
|
|
|
|
/* modules */
|
|
|
|
.notion-dark-theme #modules section {
|
|
background: var(--theme_dark--sidebar);
|
|
border: 1px solid var(--theme_dark--table-border);
|
|
}
|
|
.notion-light-theme #modules section {
|
|
background: var(--theme_light--sidebar);
|
|
border: 1px solid var(--theme_light--card-border);
|
|
}
|
|
|
|
#modules section h3,
|
|
#modules section p {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#modules section .desc {
|
|
margin: 0.3em 0 0.4em 0;
|
|
font-size: 0.9em;
|
|
}
|
|
#modules section .desc a {
|
|
color: currentColor;
|
|
text-decoration: underline dotted;
|
|
}
|
|
#modules section .desc s {
|
|
text-decoration: line-through;
|
|
}
|
|
#modules section .desc img {
|
|
width: 100%;
|
|
max-width: 20em;
|
|
margin: 0.5em 0;
|
|
}
|
|
#modules section .desc img:first-child {
|
|
margin-top: 0;
|
|
}
|
|
#modules section .desc img:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#modules section .author {
|
|
color: currentColor;
|
|
}
|
|
#modules section .author img {
|
|
max-height: 1em;
|
|
max-width: 1em;
|
|
margin-bottom: 0.15625em;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
border-radius: 50%;
|
|
}
|
|
#modules section .tags,
|
|
#modules section .version {
|
|
font-size: 0.85em;
|
|
}
|
|
.notion-dark-theme #modules section .tags,
|
|
.notion-dark-theme #modules section .version {
|
|
color: var(--theme_dark--text_ui);
|
|
}
|
|
.notion-light-theme #modules section .tags,
|
|
.notion-light-theme #modules section .version {
|
|
color: var(--theme_light--text_ui);
|
|
}
|