notion-enhancer/mods/core/css/menu.css

197 lines
4.0 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;
}
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);
}
.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);
}
#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);
}
main {
padding: 1em;
}
#alerts [role='alert'] {
padding: 0.25em;
display: flex;
margin-bottom: 0.75em;
}
#alerts [role='alert']::before {
content: '!';
display: block;
/* margin: auto 0; */
font-weight: bold;
font-size: 1.2em;
padding: 0.5rem;
}
#alerts [role='alert'] p {
font-size: 1rem;
margin: auto 0;
padding: 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);
}
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;
}