2021-09-23 09:20:26 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-11-23 21:40:26 +00:00
|
|
|
body.theme-type-dark {
|
|
|
|
--background-navbar-ios: #232323;
|
|
|
|
--background-navbar-word: #232323;
|
|
|
|
--background-navbar-cell: #232323;
|
|
|
|
--background-navbar-slide: #232323;
|
|
|
|
}
|
|
|
|
|
2021-09-23 09:20:26 +00:00
|
|
|
.skl-navbar {
|
|
|
|
--box-logo-height: 26px;
|
|
|
|
--skl-navbar-height: 44px;
|
|
|
|
--skl-pixel-ratio: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar--md {
|
|
|
|
--skl-navbar-height: 56px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-pixel-ratio--2 {
|
|
|
|
--skl-pixel-ratio: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar {
|
|
|
|
height: calc(var(--skl-navbar-height) + var(--box-logo-height));
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar.skl-navbar--md {
|
2021-09-28 08:09:07 +00:00
|
|
|
/*height: calc(56px + 26px);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar.skl-navbar--ios {
|
2021-11-23 21:40:26 +00:00
|
|
|
background-color: var(--background-navbar-ios, #f7f7f8);
|
2021-09-23 09:20:26 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 19:31:55 +00:00
|
|
|
.skl-navbar.skl-navbar--word.skl-navbar--md {
|
2021-11-23 21:40:26 +00:00
|
|
|
background-color: var(--background-navbar-word, #446995);
|
2021-09-23 09:20:26 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 19:31:55 +00:00
|
|
|
.skl-navbar.skl-navbar--cell.skl-navbar--md {
|
2021-11-23 21:40:26 +00:00
|
|
|
background-color: var(--background-navbar-cell, #40865c);
|
2021-09-23 09:20:26 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 19:31:55 +00:00
|
|
|
.skl-navbar.skl-navbar--slide.skl-navbar--md {
|
2021-11-23 21:40:26 +00:00
|
|
|
background-color: var(--background-navbar-slide, #aa5252);
|
2021-09-23 20:45:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-23 09:20:26 +00:00
|
|
|
.skl-navbar::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar:not(.skl-navbar--md)::before {
|
|
|
|
background-color: rgba(0,0,0,0.25);
|
|
|
|
display: block;
|
|
|
|
z-index: 15;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 1px;
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
transform: scaleY(calc(1 / var(--skl-pixel-ratio)));
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-navbar.skl-navbar--md::before {
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
top: 100%;
|
|
|
|
bottom: auto;
|
|
|
|
height: 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%)
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-lines {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skl-line {
|
|
|
|
height: 15px;
|
|
|
|
margin: 30px;
|
|
|
|
background: #e2e2e2;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
animation: flickerAnimation 2s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
|
2022-08-12 11:55:09 +00:00
|
|
|
.framework7-initializing .page-content {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-09-23 09:20:26 +00:00
|
|
|
@keyframes flickerAnimation {
|
|
|
|
0% { opacity:0.1; }
|
|
|
|
50% { opacity:1; }
|
|
|
|
100% { opacity:0.1; }
|
|
|
|
}
|
|
|
|
@-o-keyframes flickerAnimation{
|
|
|
|
0% { opacity:0.1; }
|
|
|
|
50% { opacity:1; }
|
|
|
|
100% { opacity:0.1; }
|
|
|
|
}
|
|
|
|
@-moz-keyframes flickerAnimation{
|
|
|
|
0% { opacity:0.1; }
|
|
|
|
50% { opacity:1; }
|
|
|
|
100% { opacity:0.1; }
|
|
|
|
}
|
|
|
|
@-webkit-keyframes flickerAnimation{
|
|
|
|
0% { opacity:0.1; }
|
|
|
|
50% { opacity:1; }
|
|
|
|
100% { opacity:0.1; }
|
|
|
|
}
|
2022-11-14 11:51:56 +00:00
|
|
|
|
2022-11-14 13:13:36 +00:00
|
|
|
.md .navbar.navbar-with-logo {
|
2022-11-14 11:51:56 +00:00
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
|
2022-11-14 13:13:36 +00:00
|
|
|
.ios .navbar.navbar-with-logo {
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
|
2022-11-14 11:51:56 +00:00
|
|
|
:root .theme-type-dark {
|
|
|
|
--f7-navbar-bg-color: #232323;
|
2022-12-20 14:23:56 +00:00
|
|
|
--f7-bars-bg-color-rgb: 35,35,35;
|
2022-11-14 11:51:56 +00:00
|
|
|
--f7-subnavbar-bg-color: #232323;
|
2022-12-20 14:23:56 +00:00
|
|
|
--f7-bars-translucent-opacity: 1;
|
2022-11-14 11:51:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.md .word-editor {
|
|
|
|
--f7-navbar-bg-color: var(--background-navbar-word, #446995);
|
|
|
|
--f7-subnavbar-bg-color: var(--background-navbar-word, #446995);
|
|
|
|
}
|
|
|
|
|
|
|
|
.md .cell-editor {
|
|
|
|
--f7-navbar-bg-color: var(--background-navbar-word, #40865c);
|
|
|
|
--f7-subnavbar-bg-color: var(--background-navbar-word, #40865c);
|
|
|
|
}
|
|
|
|
|
|
|
|
.md .slide-editor {
|
|
|
|
--f7-navbar-bg-color: var(--background-navbar-word, #aa5252);
|
|
|
|
--f7-subnavbar-bg-color: var(--background-navbar-word, #aa5252);
|
|
|
|
}
|