mirror of
https://github.com/tjy-gitnub/win12.git
synced 2026-08-31 01:55:35 +08:00
2404 lines
42 KiB
CSS
2404 lines
42 KiB
CSS
@import "./bootstrap-icons.css";
|
|
@import "./base.css";
|
|
|
|
:root {
|
|
--text: #000;
|
|
--bg: #ffffff;
|
|
--bg50: #ffffff80;
|
|
--bg70: #ffffff80;
|
|
--sd: #22222280;
|
|
--card: #efefef55;
|
|
--hover: #ffffff65;
|
|
--hover-half: #ffffff40;
|
|
--hover-b: #1111110f;
|
|
--bggrey: #ddd;
|
|
--fill:#d3d3d370;
|
|
--bgul: url('bg.svg');
|
|
--mm: #ffffffc0;
|
|
--cm: #fafafabb;
|
|
--bar: #efefef37;
|
|
--hr:#00000013;
|
|
--unfoc:#e6e6e6;
|
|
--theme-1:#ad6eca;
|
|
--theme-2:#3b91d8;
|
|
--href:#2983cc;
|
|
--bd:#8f8f8f30;
|
|
--s3d:#99999940;
|
|
}
|
|
|
|
:root.dark {
|
|
--text: #ddd;
|
|
--bg: #000000;
|
|
--bg50: #00000060;
|
|
--bg70: #00000080;
|
|
--sd: #000000a0;
|
|
--card: #72727240;
|
|
--hover: #aaaaaa40;
|
|
--hover-half: #ffffff20;
|
|
--hover-b: #eeeeee0f;
|
|
--bggrey: #444;
|
|
--fill:#54545470;
|
|
--bgul: url('bg-dark.svg');
|
|
--mm: #ffffff50;
|
|
--cm: #252525bb;
|
|
--bar: #7272722a;
|
|
--hr:#00000050;
|
|
--unfoc:#333;
|
|
--bd:#ffffff06;
|
|
--s3d:#11111160;
|
|
}
|
|
|
|
:root.nobr *,
|
|
:root.nobr *::before,
|
|
:root.nobr *::after,
|
|
:root.nobr *::-webkit-scrollbar,
|
|
:root.nobr *::-webkit-scrollbar-thumb{
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
:root.notrans *,
|
|
:root.notrans *::before,
|
|
:root.notrans *::after{
|
|
transition: none !important;
|
|
animation: none !important;
|
|
}
|
|
|
|
:root.nosd{
|
|
--sd:none;
|
|
}
|
|
|
|
:root.moreblur .window:not(.foc){
|
|
background-color: var(--bg70);
|
|
backdrop-filter: blur(30px);
|
|
}
|
|
|
|
body,
|
|
p {
|
|
transition: 100ms;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
background: var(--bgul) center;
|
|
background-size: cover;
|
|
height: 100%;
|
|
font-size: 15.5px;
|
|
color: var(--text);
|
|
user-select: none;
|
|
}
|
|
|
|
.a {
|
|
color: var(--text);
|
|
text-decoration: none !important;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.jump {
|
|
cursor: alias !important;
|
|
/* text-decoration: underline; */
|
|
color: var(--href);
|
|
}
|
|
|
|
a.jump:hover {
|
|
color: #999;
|
|
}
|
|
|
|
a.jump:active {
|
|
color: #666;
|
|
}
|
|
|
|
hr {
|
|
background-color: #afafaf50;
|
|
}
|
|
|
|
.scsmoo {
|
|
/* scroll-behavior: smooth; */
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
border-radius: 7px;
|
|
height: 14px;
|
|
width: 14px;
|
|
}
|
|
|
|
::-webkit-scrollbar:hover {
|
|
background-color: var(--card);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #7f7f7f70;
|
|
background-clip: padding-box;
|
|
border: 6px solid transparent;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
border: 4px solid transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
display: none;
|
|
}
|
|
|
|
.act,
|
|
list>a,
|
|
#cs>list>a,
|
|
#datebox>.cont>.body>p,
|
|
.wg>.titbar>.more,
|
|
.wg.calc>.content>.b,
|
|
.button {
|
|
transition: 80ms, transform 400ms cubic-bezier(0.14, 1.02, 0.17, 0.03) !important;
|
|
}
|
|
|
|
.act:active,
|
|
list>a:active,
|
|
#cs>list>a:active,
|
|
#datebox>.cont>.body>p:active,
|
|
.wg>.titbar>.more:active,
|
|
.wg.calc>.content>.b:active,
|
|
.button:active {
|
|
transform: scale(0.93);
|
|
/* filter: blur(0.5px); */
|
|
filter: opacity(0.75);
|
|
/* transition: transform 500ms cubic-bezier(0.24, 0.86, 0.36, 0.44) !important; */
|
|
}
|
|
|
|
#dock-box {
|
|
position: fixed;
|
|
bottom: 10px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
z-index: 100;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.dock {
|
|
border-radius: 8px;
|
|
height: 100%;
|
|
background-color: var(--bg70);
|
|
backdrop-filter: blur(20px) saturate(1.5);
|
|
-webkit-backdrop-filter: blur(20px) saturate(1.5);
|
|
box-shadow: 0 1px 2px #44444460, 0px 3px 25px 1px var(--sd);
|
|
padding: 7px 6px;
|
|
margin: 0 3px;
|
|
display: flex;
|
|
transition: 200ms, transform 300ms cubic-bezier(0.14, 1.02, 0.17, 0.03),backdrop-filter,-webkit-backdrop-filter 0ms;
|
|
bottom: 0;
|
|
/* transform: scale(1); */
|
|
/* border: 1.5px solid #6f6f6f30; */
|
|
}
|
|
|
|
.dock>* {
|
|
padding-left: 3px;
|
|
padding-right: 3px;
|
|
}
|
|
|
|
.dock.about:hover,
|
|
.dock.theme:hover,
|
|
.dock.date:hover {
|
|
backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
|
|
-webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
|
|
}
|
|
|
|
.dock.about {
|
|
cursor: pointer;
|
|
width: 280px;
|
|
font-size: 18px;
|
|
display: block;
|
|
overflow: hidden;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.dock.about>p {
|
|
margin-top: 30px;
|
|
font-size: 15px;
|
|
padding-left: 15px;
|
|
display: none;
|
|
opacity: 0;
|
|
transition: 200ms;
|
|
transition-delay: 200ms;
|
|
}
|
|
|
|
.dock.about:active>p {
|
|
display: block;
|
|
}
|
|
|
|
.dock.about:active {
|
|
/* transform: scale(0.9); */
|
|
filter: opacity(0.6)!important;
|
|
}
|
|
|
|
.dock.about.show {
|
|
height: 220px;
|
|
width: 500px;
|
|
margin-top: -180px;
|
|
font-size: 23px;
|
|
}
|
|
|
|
.dock.about.show>p {
|
|
display: block;
|
|
margin-top: 5px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.dock.about.show:hover {
|
|
backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
|
|
-webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.2);
|
|
}
|
|
|
|
|
|
#taskbar {
|
|
padding: 3px 2px;
|
|
transition: 80ms;
|
|
overflow: hidden;
|
|
width: 0;
|
|
}
|
|
|
|
#taskbar>a {
|
|
border-radius: 10px;
|
|
height: 34px;
|
|
width: 38px;
|
|
transition: 100ms;
|
|
padding: 4px 5px;
|
|
display: block;
|
|
margin: 0;
|
|
background-clip: padding-box;
|
|
border-left: 2px solid transparent;
|
|
border-right: 2px solid transparent;
|
|
}
|
|
|
|
#taskbar>a:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#taskbar>a:active>img{
|
|
transform: scale(0.8);
|
|
}
|
|
|
|
#taskbar>a>img {
|
|
width: 26px;
|
|
height: 26px;
|
|
transition: 100ms;
|
|
margin: -1px 0 0 -0.5px;
|
|
}
|
|
|
|
#taskbar>a:not(.min)>img {
|
|
animation: task-show 800ms;
|
|
}
|
|
|
|
@keyframes task-show {
|
|
0% {
|
|
margin-top: -1px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
40% {
|
|
margin-top: -6px;
|
|
margin-bottom: 5px;
|
|
transform: scaleY(1.1);
|
|
transform-origin: bottom;
|
|
}
|
|
|
|
60% {
|
|
margin-top: 1px;
|
|
margin-bottom: -2px;
|
|
transform: scaleY(0.8);
|
|
transform-origin: bottom;
|
|
}
|
|
|
|
100% {
|
|
margin-top: -1px;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
#taskbar>a.min>img {
|
|
animation: task-hide 800ms;
|
|
}
|
|
|
|
@keyframes task-hide {
|
|
0% {
|
|
margin-top: -1px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
40% {
|
|
/* margin-top: 3px;
|
|
margin-bottom: -4px; */
|
|
margin-top: 0px;
|
|
margin-bottom: -1px;
|
|
transform: scaleY(0.8);
|
|
transform-origin: bottom;
|
|
}
|
|
|
|
70%{
|
|
margin-top: -2px;
|
|
margin-bottom: 1px;
|
|
transform: scaleY(1.05);
|
|
transform-origin: bottom;
|
|
}
|
|
|
|
100% {
|
|
margin-top: -1px;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
#taskbar>a::after {
|
|
content: '';
|
|
display: block;
|
|
width: 18px;
|
|
background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
|
|
height: 4px;
|
|
border-radius: 2px;
|
|
position: relative;
|
|
bottom: 4px;
|
|
left: 3.2px;
|
|
transition: 150ms;
|
|
}
|
|
|
|
#taskbar>a:not(.foc)::after {
|
|
background: linear-gradient(90deg, #7f7f7f, #7f7f7f);
|
|
width: 12px;
|
|
left: 6px;
|
|
}
|
|
|
|
#taskbar>a:not(.foc):hover:after {
|
|
width: 16px;
|
|
left: 4.2px;
|
|
}
|
|
|
|
#taskbar>a.foc:hover:after {
|
|
width: 22px;
|
|
left: 1.2px;
|
|
}
|
|
|
|
#taskbar>a.min:hover:after {
|
|
width: 18px;
|
|
left: 3.2px;
|
|
}
|
|
|
|
.dock.date {
|
|
width: 100px;
|
|
padding: 0px 5px;
|
|
display: block;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dock.date:active {
|
|
transform: scale(0.9);
|
|
filter: opacity(0.6)!important;
|
|
}
|
|
|
|
.dock.control {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.dock.control>icon {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.dock.control>* {
|
|
margin: 0 -2px 0 -1px;
|
|
}
|
|
|
|
.dock.control:active {
|
|
transform: scale(0.9);
|
|
filter: opacity(0.6) !important;
|
|
}
|
|
|
|
.dock.date>.date {
|
|
margin-top: -8px;
|
|
}
|
|
|
|
.dock.date>p {
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
}
|
|
|
|
.dock.date.show>p {
|
|
margin-top: -50px;
|
|
}
|
|
|
|
.dock.date>.bi {
|
|
position: absolute;
|
|
display: block;
|
|
text-align: center;
|
|
left: 0;
|
|
top: 37px;
|
|
width: 100%;
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
}
|
|
|
|
.dock.date.show>.bi {
|
|
top: 7px;
|
|
}
|
|
|
|
.dock.theme {
|
|
width: 40px;
|
|
padding-left: 3.5px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
box-shadow: 0 0 6px 1px var(--sd);
|
|
}
|
|
|
|
.dock.theme:active {
|
|
transform: scale(0.9);
|
|
filter: opacity(0.6)!important;
|
|
}
|
|
|
|
.dock.theme>.dark {
|
|
position: absolute;
|
|
height: 30px;
|
|
width: 30px;
|
|
top: 5px;
|
|
left: 40px;
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
opacity: 0;
|
|
}
|
|
|
|
.dock.theme>.light {
|
|
height: 30px;
|
|
width: 30px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 5px;
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
opacity: 1;
|
|
}
|
|
|
|
.dock.theme.dk>.dark {
|
|
left: 5px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.dock.theme.dk>.light {
|
|
left: -30px;
|
|
opacity: 0;
|
|
}
|
|
|
|
.dock-btn {
|
|
transition: 200ms;
|
|
width: 32px;
|
|
height: 26px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dock-btn:hover {
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
#start-btn>svg.menu {
|
|
position: relative;
|
|
top: 27px;
|
|
transition: 200ms;
|
|
}
|
|
|
|
#start-btn.show>svg.menu {
|
|
top: 0;
|
|
transition-delay: 200ms;
|
|
}
|
|
|
|
#start-btn>.ico {
|
|
position: relative;
|
|
top: -32px;
|
|
transition: transform 200ms, top 200ms 100ms, left 200ms;
|
|
left: 0;
|
|
/* transition-delay: 100ms; */
|
|
}
|
|
|
|
#start-btn.show>.ico {
|
|
transform: scale(0.5);
|
|
top: -26px;
|
|
}
|
|
|
|
#search-btn>svg.in {
|
|
position: relative;
|
|
display: block;
|
|
top: -29.6px;
|
|
left: 2.5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
transition: 200ms;
|
|
}
|
|
|
|
#search-btn:active {
|
|
transform: scale(0.85);
|
|
}
|
|
|
|
#search-btn.show>svg.in {
|
|
transform: scale(1.1) rotate(360deg);
|
|
filter: saturate(2) brightness(1.1);
|
|
}
|
|
|
|
#widgets-btn>svg {
|
|
display: block;
|
|
}
|
|
|
|
#widgets-btn:active {
|
|
transform: scale(0.85);
|
|
}
|
|
|
|
#widgets-btn>.wid2 {
|
|
margin-top: -19px;
|
|
margin-left: 10.5px;
|
|
height: 20px;
|
|
transition: 150ms cubic-bezier(0.8, 0, 0.2, 1);
|
|
transition-delay: 0ms;
|
|
}
|
|
|
|
#widgets-btn>.wid3 {
|
|
margin-top: 13px;
|
|
margin-left: -2px;
|
|
height: 31px;
|
|
transition: 100ms cubic-bezier(0.8, 0, 0.2, 1);
|
|
transition-delay: 100ms;
|
|
}
|
|
|
|
#widgets-btn>.wid4 {
|
|
margin-top: 4px;
|
|
margin-left: 11.5px;
|
|
height: 12px;
|
|
transition: 200ms cubic-bezier(0.8, 0, 0.2, 1);
|
|
transition-delay: 180ms;
|
|
}
|
|
|
|
#widgets-btn.show>.wid2 {
|
|
margin-top: -28px;
|
|
}
|
|
|
|
#widgets-btn.show>.wid3 {
|
|
margin-top: -20.5px;
|
|
}
|
|
|
|
#widgets-btn.show>.wid4 {
|
|
margin-top: -14px;
|
|
}
|
|
|
|
|
|
#start-menu {
|
|
display: none;
|
|
position: fixed;
|
|
bottom: -600px;
|
|
height: 594px;
|
|
max-height: calc(100% - 120px);
|
|
width: 860px;
|
|
left: calc(50% - 430px);
|
|
border-radius: 20px;
|
|
background: var(--bg50);
|
|
backdrop-filter: blur(80px) saturate(1.3);
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.3);
|
|
opacity: 0.5;
|
|
transition: 200ms;
|
|
box-shadow: 3px 3px 25px 1px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
z-index: 99;
|
|
}
|
|
|
|
#start-menu.show-begin {
|
|
display: flex;
|
|
}
|
|
|
|
#start-menu.show {
|
|
display: flex;
|
|
bottom: 60px;
|
|
opacity: 1;
|
|
}
|
|
|
|
#start-menu.max {
|
|
left: 0;
|
|
bottom: -100%;
|
|
width: 100%;
|
|
max-height: 100%;
|
|
height: 100%;
|
|
border-radius: 0;
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
}
|
|
|
|
#start-menu.max>#s-m-l>#s-m-user {
|
|
margin-bottom: 60px;
|
|
top: 10px;
|
|
}
|
|
|
|
#start-menu.max>#s-m-r>.tuijian>.apps>* {
|
|
width: 25%;
|
|
}
|
|
|
|
#start-menu.max.show {
|
|
bottom: 0;
|
|
}
|
|
|
|
#s-m-l {
|
|
min-width: 300px;
|
|
height: 100%;
|
|
padding: 0 10px;
|
|
transition: 400ms;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#start-menu.max>#s-m-l {
|
|
min-width: 300px;
|
|
width: 22%;
|
|
}
|
|
|
|
#s-m-l>.input {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
input-before {
|
|
display: block;
|
|
font-size: 15px;
|
|
height: 0;
|
|
margin-top: -29px;
|
|
margin-left: 8px;
|
|
margin-bottom: 10px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.window>.resize-bar {
|
|
z-index: 1 !important;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob {
|
|
position: absolute;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.top {
|
|
left: 7px;
|
|
top: 0px;
|
|
height: 7px;
|
|
width: calc(100% - 14px);
|
|
cursor: ns-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.bottom {
|
|
left: 7px;
|
|
bottom: 0px;
|
|
height: 7px;
|
|
width: calc(100% - 14px);
|
|
cursor: ns-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.left {
|
|
top: 7px;
|
|
left: 0px;
|
|
height: calc(100% - 14px);
|
|
width: 7px;
|
|
cursor: ew-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.right {
|
|
top: 7px;
|
|
right: 0px;
|
|
height: calc(100% - 14px);
|
|
width: 7px;
|
|
cursor: ew-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.top-left {
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 7px;
|
|
height: 7px;
|
|
cursor: nwse-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.bottom-right {
|
|
bottom: 0px;
|
|
right: 0px;
|
|
width: 7px;
|
|
height: 7px;
|
|
cursor: nwse-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.bottom-left {
|
|
bottom: 0px;
|
|
left: 0px;
|
|
width: 7px;
|
|
height: 7px;
|
|
cursor: nesw-resize;
|
|
}
|
|
|
|
.window>.resize-bar>.resize-knob.top-right {
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 7px;
|
|
height: 7px;
|
|
cursor: nesw-resize;
|
|
}
|
|
|
|
#s-m-l>list {
|
|
margin-left: 5px;
|
|
margin-top: 40px;
|
|
flex-grow: 1;
|
|
overflow: auto;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
#s-m-l>list>a {
|
|
padding: 3px 8px;
|
|
font-size: 15px;
|
|
display: flex;
|
|
}
|
|
|
|
#s-m-l>list>a>p {
|
|
margin: 5px 7px;
|
|
}
|
|
|
|
#s-m-l>list>a>img {
|
|
height: 30px;
|
|
width: 30px;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
#s-m-l>list>.text {
|
|
padding-left: 10px;
|
|
font-size: 15px;
|
|
height: 35px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#s-m-r {
|
|
flex-grow: 1;
|
|
margin-left: -15px;
|
|
overflow: hidden;
|
|
padding-bottom: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#s-m-r>*{
|
|
opacity: 0;
|
|
transition: transform 200ms cubic-bezier(0,0,0,1), opacity 200ms 30ms;
|
|
transform: translate(0, 50px);
|
|
}
|
|
|
|
#start-menu.show>#s-m-r>* {
|
|
transform: none;
|
|
opacity: 1;
|
|
}
|
|
|
|
#s-m-r>.row1 {
|
|
display: flex;
|
|
transition-delay: 200ms;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool {
|
|
width: 200px;
|
|
padding: 5px 10px 0 0;
|
|
transition: 300ms;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>* {
|
|
float: right;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.power {
|
|
overflow: hidden;
|
|
display: flex;
|
|
padding-left: 0;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.power:active {
|
|
padding: 1px 0;
|
|
font-size: 23px;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show {
|
|
width: 100px;
|
|
background-color: var(--card);
|
|
box-shadow: 3px 3px 6px var(--sd);
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show:hover {
|
|
background-color: var(--card);
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.power>.bi {
|
|
position: relative;
|
|
height: 33px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
transition: 200ms;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.power>i.bi-power {
|
|
border-radius: 10px 0 0 10px;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.power>i.bi-arrow-counterclockwise {
|
|
border-radius: 0 10px 10px 0;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon>.bi-arrow-counterclockwise::before {
|
|
position: relative;
|
|
top: 1.15px;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon>.bi-power::before {
|
|
position: relative;
|
|
top: -2px;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show>.bi-power::before {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show>.bi {
|
|
top: -2px;
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show>i {
|
|
background-color: var(--card);
|
|
}
|
|
|
|
#s-m-r>.row1>.tool>.btn-icon.show>i:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#start-menu.max>#s-m-r>.row1>.tool {
|
|
margin-left: 100px;
|
|
margin-right: 50px;
|
|
}
|
|
|
|
#s-m-r>.row1>.folder {
|
|
display: flex;
|
|
padding: 10px 10px;
|
|
margin: 15px 15px;
|
|
border-radius: 10px;
|
|
background-color: var(--card);
|
|
flex-grow: 1;
|
|
border: 1.5px solid #6f6f6f30;
|
|
box-shadow: 3px 3px 6px var(--sd);
|
|
}
|
|
|
|
#s-m-r>.row1>.folder>.sm-app {
|
|
height: 72px;
|
|
}
|
|
|
|
#s-m-r>.pinned {
|
|
padding: 10px 5px;
|
|
margin-right: 10px;
|
|
margin-left: 15px;
|
|
border-radius: 10px;
|
|
background-color: var(--card);
|
|
box-shadow: 3px 3px 6px var(--sd);
|
|
transition-delay: 300ms;
|
|
border: 1.5px solid #6f6f6f30;
|
|
height: 220px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#s-m-r>.pinned>.apps {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-left: 10px;
|
|
overflow: auto;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
|
|
#s-m-r>.pinned>.title {
|
|
padding: 5px 0 5px 10px;
|
|
font-size: 18px;
|
|
font-weight: 530;
|
|
display: flex;
|
|
}
|
|
|
|
#s-m-r>.pinned>.title>* {
|
|
width: 100%;
|
|
}
|
|
|
|
#s-m-r>.tuijian {
|
|
padding: 10px 10px;
|
|
margin: 15px 10px 0 15px;
|
|
border-radius: 10px;
|
|
background-color: var(--card);
|
|
box-shadow: 3px 3px 6px var(--sd);
|
|
transition-delay: 450ms;
|
|
border: 1.5px solid #6f6f6f30;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#s-m-r>.tuijian>.apps {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-left: 15px;
|
|
overflow: auto;
|
|
}
|
|
|
|
#s-m-r>.tuijian>.apps>* {
|
|
transition: 80ms;
|
|
}
|
|
|
|
#s-m-r>.tuijian>.title {
|
|
padding: 5px 0 5px 10px;
|
|
font-size: 18px;
|
|
font-weight: 530;
|
|
display: flex;
|
|
}
|
|
|
|
#s-m-r>.tuijian>.title>* {
|
|
width: 100%;
|
|
}
|
|
|
|
#s-m-user {
|
|
height: 100px;
|
|
width: 100px;
|
|
border-radius: 50%;
|
|
position: relative;
|
|
top: -50px;
|
|
left: calc(50% - 50px);
|
|
background-color: var(--bggrey);
|
|
font-size: 80px;
|
|
box-shadow: 3px 3px 6px var(--sd);
|
|
transition: 200ms 100ms;
|
|
}
|
|
|
|
#s-m-user>svg {
|
|
position: relative;
|
|
top: -8px;
|
|
left: 15px;
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.more-btn {
|
|
background-image: linear-gradient(100deg, var(--theme-1), var(--theme-2));
|
|
color: #fff;
|
|
padding: 0;
|
|
border-radius: 5px;
|
|
font-size: 12px;
|
|
float: right;
|
|
padding: 4px 5px;
|
|
transition: 100ms;
|
|
outline: 0 solid var(--text);
|
|
}
|
|
|
|
.more-btn:hover {
|
|
filter: brightness(0.94);
|
|
outline-width: 2px;
|
|
outline-offset: 1px;
|
|
}
|
|
|
|
.more-btn>.bi {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.sm-app {
|
|
width: 85px;
|
|
height: 80px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
transition: 80ms;
|
|
padding: 0 3px;
|
|
color: #888;
|
|
cursor: inherit;
|
|
}
|
|
|
|
.sm-app.enable {
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sm-app.enable:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
.sm-app.enable>*:first-child {
|
|
filter: brightness(1);
|
|
}
|
|
|
|
.sm-app>*:first-child {
|
|
height: 40px;
|
|
width: 40px;
|
|
margin-top: 8px;
|
|
transition: 80ms;
|
|
filter: contrast(0.3) brightness(0.7);
|
|
text-shadow: 3px 3px 5px var(--sd);
|
|
}
|
|
|
|
.sm-app>*:last-child {
|
|
margin-top: -3px;
|
|
transition: 80ms;
|
|
font-size: 10px;
|
|
line-height: 13px;
|
|
}
|
|
|
|
.sm-app:hover {
|
|
background-color: unset;
|
|
}
|
|
|
|
.sm-app:active>*:first-child {
|
|
transform: scale(0.8);
|
|
}
|
|
|
|
.sm-app.enable:active>*:first-child {
|
|
filter: brightness(0.8) opacity(0.8);
|
|
}
|
|
|
|
.tj-obj {
|
|
width: 50%;
|
|
height: 55px;
|
|
border-radius: 10px;
|
|
transition: 80ms;
|
|
padding: 0 3px;
|
|
display: flex;
|
|
padding: 10px 3px 10px 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tj-obj>img {
|
|
height: 35px;
|
|
width: 35px;
|
|
transition: 200ms;
|
|
}
|
|
|
|
.tj-obj>div>*:first-child {
|
|
margin: 3px 0 2px 5px;
|
|
font-size: 15px;
|
|
line-height: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tj-obj>div>*:last-child {
|
|
font-size: 10px;
|
|
line-height: 13px;
|
|
margin-left: 6px;
|
|
color: #7f7f7f;
|
|
}
|
|
|
|
.tj-obj:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#search-win {
|
|
display: none;
|
|
position: fixed;
|
|
bottom: -500px;
|
|
height: 500px;
|
|
max-height: calc(90% - 120px);
|
|
width: 600px;
|
|
left: calc(50% - 300px);
|
|
border-radius: 20px;
|
|
background-color: var(--bg50);
|
|
backdrop-filter: blur(80px) saturate(1.3);
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.3);
|
|
opacity: 0.8;
|
|
transition: 200ms;
|
|
box-shadow: 3px 3px 15px 1px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
z-index: 99;
|
|
padding: 10px;
|
|
}
|
|
|
|
#search-win.show-begin {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#search-win.show {
|
|
max-height: calc(100% - 120px);
|
|
height: 594px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
bottom: 60px;
|
|
opacity: 1;
|
|
}
|
|
|
|
#search-win>.input {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
#search-win>.tab {
|
|
display: flex;
|
|
margin-top: 25px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#search-win>.tab>a {
|
|
padding: 4px 7px 3px 7px;
|
|
margin: 0 1px;
|
|
text-align: center;
|
|
border-radius: 10px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
#search-win>.tab>a:hover,
|
|
#search-win>.tab>a.now {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#search-win>.tab>a.now::after {
|
|
content: '';
|
|
display: block;
|
|
position: relative;
|
|
bottom: 0;
|
|
background-image: linear-gradient(90deg, var(--theme-1), var(--theme-2));
|
|
width: calc(100% - 6px);
|
|
left: 3px;
|
|
height: 3px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#search-win>.ans {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#search-win>.ans>.list {
|
|
width: 250px;
|
|
height: 100%;
|
|
margin-right: 5px;
|
|
overflow: auto;
|
|
}
|
|
|
|
#search-win>.ans>.list>list>a {
|
|
padding: 5px 5px 0px 10px;
|
|
display: flex;
|
|
}
|
|
|
|
#search-win>.ans>.list>list>a:active{
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
#search-win>.ans>.list>list>a>.bi{
|
|
display: block;
|
|
margin-right: 3px;
|
|
font-size: 24px;
|
|
margin-top: -5px;
|
|
background-image: linear-gradient(100deg, var(--theme-1), var(--theme-2));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
#search-win>.ans>.list>list>a>img{
|
|
height: 25px;
|
|
width: 25px;
|
|
margin: 0px 5px 7px 0;
|
|
}
|
|
|
|
#search-win>.ans>.view {
|
|
flex-grow: 1;
|
|
border-radius: 10px;
|
|
background: var(--card);
|
|
padding: 3px;
|
|
box-shadow: 2px 2px 5px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
display: none;
|
|
overflow: auto;
|
|
margin: 2px 5px 5px 0;
|
|
}
|
|
|
|
#search-win>.ans>.view.show{
|
|
display: block;
|
|
}
|
|
|
|
#search-win>.ans>.view>.fname>.bi{
|
|
font-size: 70px;
|
|
display: block;
|
|
margin: 30px 0 5px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#search-win>.ans>.view>.fname>.name{
|
|
font-size: 18px;
|
|
text-align: center;
|
|
}
|
|
#search-win>.ans>.view>.fname>.type{
|
|
font-size: 13px;
|
|
text-align: center;
|
|
opacity: 0.5;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#search-win>.ans>.view>.option>list{
|
|
margin: 10px;
|
|
}
|
|
|
|
#search-win>.ans>.view>.option>list>a{
|
|
border-radius: 6px;
|
|
transition: 70ms !important;
|
|
padding: 4px 12px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#search-win>.ans>.view>.option>list>a:active{
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
#widgets {
|
|
display: none;
|
|
position: fixed;
|
|
bottom: -600px;
|
|
height: 600px;
|
|
max-height: calc(90% - 50px);
|
|
width: 1000px;
|
|
left: calc(50% - 500px);
|
|
border-radius: 20px;
|
|
background-color: var(--bg50);
|
|
backdrop-filter: blur(80px) saturate(1.3);
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.3);
|
|
transition: 200ms;
|
|
box-shadow: 3px 3px 15px 1px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
z-index: 99;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
#widgets.show-begin {
|
|
display: flex;
|
|
}
|
|
|
|
#widgets.show {
|
|
bottom: 60px;
|
|
}
|
|
|
|
#widgets>div {
|
|
width: calc(50% - 0.5px);
|
|
padding: 0 10px;
|
|
}
|
|
|
|
#widgets>.hr {
|
|
width: 1px;
|
|
height: calc(100% - 20px);
|
|
margin-top: 10px;
|
|
background-color: var(--hover-b);
|
|
}
|
|
|
|
#widgets>div>.bar {
|
|
height: 32px;
|
|
display: flex;
|
|
background-color: var(--bar);
|
|
box-shadow: 3px 2px 3px var(--sd);
|
|
border-radius: 10px;
|
|
padding-left: 10px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#widgets>div>.bar>.tit {
|
|
width: 100px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
#widgets>div>.content {
|
|
height: calc(100% - 35px);
|
|
margin-top: 8px;
|
|
}
|
|
|
|
#widgets>.widgets>.content {
|
|
overflow: auto;
|
|
}
|
|
|
|
#widgets>.widgets>.content>.grid {
|
|
display: grid;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
grid-template-columns: repeat(5, 83px);
|
|
grid-template-rows: repeat(auto-fill, 83px);
|
|
height: max-content;
|
|
grid-auto-flow: row;
|
|
}
|
|
|
|
#widgets>.widgets>.content>.grid>.wg {
|
|
background: var(--card);
|
|
transition: 100ms;
|
|
animation: wgs 150ms;
|
|
}
|
|
|
|
@keyframes wgs {
|
|
0%{
|
|
transform:scale(0.6);
|
|
opacity: 0.5;
|
|
}
|
|
100%{
|
|
transform:none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
#widgets>.widgets>.content>.template {
|
|
display: none;
|
|
}
|
|
|
|
.wg {
|
|
border-radius: 10px;
|
|
box-shadow: 3px 3px 5px var(--sd);
|
|
overflow: hidden;
|
|
transition: 200ms;
|
|
}
|
|
|
|
.wg>.titbar {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.wg>.titbar>.more {
|
|
border-radius: 50%;
|
|
width: 25px;
|
|
height: 25px;
|
|
background-color: var(--bggrey);
|
|
box-shadow: 2px 2px 5px var(--sd);
|
|
margin: 3px 3px 0 0;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
}
|
|
|
|
.wg>.titbar>.more>.bi {
|
|
display: block;
|
|
}
|
|
|
|
.wg>.titbar>.more:hover>.bi {
|
|
background: var(--hover);
|
|
}
|
|
|
|
.wg>.titbar>.menu {
|
|
transition: 200ms cubic-bezier(0.9, 0, 0.1, 1);
|
|
max-width: 0;
|
|
box-shadow: 2px 2px 5px var(--sd);
|
|
overflow: hidden;
|
|
margin: 3px 3px 0 3px;
|
|
background-color: var(--bggrey);
|
|
border-radius: 12.5px;
|
|
height: 25px;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
max-width: fit-content;
|
|
transform: scaleX(0);
|
|
transform-origin: right;
|
|
}
|
|
|
|
.wg>.titbar>.menu.show {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.wg>.titbar>.menu>.a {
|
|
width: 25px;
|
|
height: 100%;
|
|
}
|
|
|
|
.wg>.titbar>.menu>.a>.bi {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.wg>.titbar>.menu>.a:first-child,
|
|
.wg>.titbar>.menu>.a:last-child {
|
|
width: 28px;
|
|
}
|
|
|
|
.wg>.titbar>.menu>.a.img>img {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin: 3.5px 0 3.5px 6px;
|
|
}
|
|
|
|
.wg>.titbar>.menu>.a:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
.wg>.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin-top: -28px;
|
|
}
|
|
|
|
|
|
#widgets>.news>.content {
|
|
overflow: auto;
|
|
display: grid;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
grid-template-columns: repeat(5, 83px);
|
|
grid-template-rows: repeat(9, 83px);
|
|
}
|
|
|
|
#widgets>.news>.content>.card {
|
|
border-radius: 10px;
|
|
transition: 10ms;
|
|
}
|
|
|
|
#widgets>.news>.content>.card:hover {
|
|
box-shadow: 1px 1px 7px var(--sd);
|
|
filter: brightness(0.95);
|
|
}
|
|
|
|
#widgets>.news>.content>.card>.tit {
|
|
font-size: 18px;
|
|
line-height: 1.2;
|
|
margin: 30px 0 0 10px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
#widgets>.news>.content>.card>.a{
|
|
color: var(--href);
|
|
}
|
|
|
|
#widgets>.news>.content>.card>.a:hover {
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
#datebox, #control {
|
|
display: none;
|
|
position: fixed;
|
|
bottom: -430px;
|
|
height: 430px;
|
|
width: 350px;
|
|
border-radius: 20px;
|
|
background-color: var(--bg50);
|
|
backdrop-filter: blur(80px) saturate(1.3);
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.3);
|
|
transition: 200ms;
|
|
box-shadow: 3px 3px 15px 1px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
z-index: 99;
|
|
padding: 10px;
|
|
}
|
|
|
|
#control {
|
|
height: 250px;
|
|
}
|
|
|
|
.dock.control * {
|
|
fill: var(--text);
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
#control>.cont>.top {
|
|
display: grid;
|
|
grid-template-rows: auto auto;
|
|
grid-template-columns: auto auto auto;
|
|
gap: 15px;
|
|
height: 160px;
|
|
margin-top: 10px;
|
|
padding: 0px 7.5px 0px 7.5px;
|
|
}
|
|
|
|
#control>.cont>.top>div {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: 70% 30%;
|
|
gap: 5px;
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--bg70);
|
|
border-radius: 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: 70ms, transform 400ms cubic-bezier(0.14, 1.02, 0.17, 0.03);
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon.active {
|
|
background-image: linear-gradient(120deg, var(--theme-1), var(--theme-2));
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon.active>icon {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#control icon {
|
|
background-image: linear-gradient(120deg, var(--theme-1), var(--theme-2));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#control>.cont>.top>div>.tit {
|
|
font-size: 85%;
|
|
text-align: center;
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon:hover {
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon:hover {
|
|
background-color: var(--card);
|
|
}
|
|
|
|
#control>.cont>.top>div>.icon:active {
|
|
transform: scale(0.93);
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.icon {
|
|
margin-right: 10px;
|
|
vertical-align: -0.3em;
|
|
display: inline-block;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.icon>icon {
|
|
font-size: 20px !important;
|
|
}
|
|
|
|
#control>.cont>.bottom {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.range-container {
|
|
width: calc(100% - 43px);
|
|
height: 4.5px;
|
|
background-image: linear-gradient(100deg, var(--theme-1), var(--theme-2));
|
|
border-radius: 7px;
|
|
display: inline-block;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.range-container>.after {
|
|
border-radius: 0px 7px 7px 0px !important;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.range-container>.after {
|
|
height: 4.5px;
|
|
position: relative;
|
|
background-color: var(--bg70);
|
|
bottom: 0px;
|
|
width: 0px;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.range-container>.slider-btn {
|
|
height: 17px;
|
|
border-radius: 3.5px;
|
|
background-image: linear-gradient(to top, var(--theme-1), var(--theme-2));
|
|
position: relative;
|
|
width: 7px;
|
|
bottom: 10.5px;
|
|
margin-left: 100%;
|
|
transform: translateX(-3.5px);
|
|
transition: filter 100ms;
|
|
}
|
|
|
|
#control>.cont>.bottom>.brightness>.range-container>.slider-btn:hover, #control>.cont>.bottom>.brightness>.range-container.active>.slider-btn {
|
|
filter: brightness(0.8);
|
|
}
|
|
|
|
#datebox.show-begin, #control.show-begin {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#datebox.show, #control.show {
|
|
display: flex;
|
|
flex-direction: column;
|
|
bottom: 60px;
|
|
}
|
|
|
|
#datebox>.tit {
|
|
padding: 3px 5px;
|
|
margin: 0;
|
|
}
|
|
|
|
#datebox>.tit>.time {
|
|
font-size: 50px;
|
|
line-height: 50px;
|
|
}
|
|
|
|
#datebox>.tit>.date {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#datebox>.cont {
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#datebox>.cont>.head {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
#datebox>.cont>.head>p {
|
|
width: 46.5px;
|
|
text-align: center;
|
|
}
|
|
|
|
#datebox>.cont>.body {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
#datebox>.cont>.body>* {
|
|
width: 46.5px;
|
|
height: 46.5px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#datebox>.cont>.body>p.today {
|
|
background: linear-gradient(120deg, var(--theme-1), var(--theme-2));
|
|
color: #eee;
|
|
}
|
|
|
|
#datebox>.cont>.body>p:hover {
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#desktop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100% - 50px);
|
|
z-index: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
transition: 30ms;
|
|
justify-content: flex-start;
|
|
align-items: baseline;
|
|
}
|
|
|
|
#desktop>div {
|
|
width: 85px;
|
|
height: 84px;
|
|
text-overflow: ellipsis;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
margin: 8px 10px 2px 10px;
|
|
padding: 0 3px 3px 3px;
|
|
}
|
|
|
|
#desktop>div:hover{
|
|
backdrop-filter: blur(15px) saturate(0.9) brightness(1.4);
|
|
}
|
|
|
|
#desktop>div:active{
|
|
backdrop-filter: blur(5px) brightness(1.5);
|
|
}
|
|
|
|
#desktop>div>img {
|
|
width: 65px;
|
|
height: 65px;
|
|
}
|
|
|
|
#desktop>div.b>img {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin: 5px;
|
|
}
|
|
|
|
#desktop>div>p {
|
|
line-height: 15px;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
text-shadow: 2px 2px 4px var(--sd), 0 0 3px #000;
|
|
margin-top: -6px;
|
|
}
|
|
|
|
#desktop>.choose{
|
|
position: fixed;
|
|
border: 2px solid var(--href);
|
|
/* border-image: linear-gradient(120deg, var(--theme-1), var(--theme-2)) 4; */
|
|
border-radius: 5px;
|
|
background-color: var(--hover-half);
|
|
display: none;
|
|
}
|
|
|
|
.input {
|
|
background-color: var(--bg50);
|
|
border: none;
|
|
border-bottom: 2.5px solid;
|
|
border-bottom-color: #7f7f7f7f;
|
|
border-radius: 13px;
|
|
padding: 3px 5px 3px 8px;
|
|
outline: medium;
|
|
width: 100%;
|
|
color: var(--text);
|
|
transition: 100ms,border 0s;
|
|
box-shadow: 0 1px 2px var(--s3d);
|
|
}
|
|
|
|
.input:hover{
|
|
background: var(--cm);
|
|
}
|
|
|
|
.input:focus {
|
|
background-color: var(--bg);
|
|
background-clip: padding-box, border-box;
|
|
background-origin: padding-box, border-box;
|
|
background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient(90deg, var(--theme-1), var(--theme-2));
|
|
border-bottom-color: transparent;
|
|
box-shadow: 0 1px 10px var(--s3d);
|
|
opacity: 1;
|
|
}
|
|
|
|
.btn {
|
|
border: 0px solid;
|
|
border-radius: 10px;
|
|
padding: 7px 10px;
|
|
transition: 100ms;
|
|
background-color: #00000000;
|
|
}
|
|
|
|
.btn-icon {
|
|
border: 0px solid;
|
|
border-radius: 10px;
|
|
padding: 1px 5px;
|
|
background-color: #00000000;
|
|
font-size: 23px;
|
|
height: 33px;
|
|
width: 33px;
|
|
}
|
|
|
|
.btn-icon.big {
|
|
padding: 3px 7px;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: var(--hover);
|
|
}
|
|
|
|
.btn:active {
|
|
transform: scale(0.9);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.button{
|
|
background-color: #9f9f9f40;
|
|
border-radius: 10px;
|
|
padding: 5px 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover{
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
.button:active{
|
|
filter: brightness(1.2) opacity(0.8);
|
|
}
|
|
|
|
input.foc{
|
|
display: block;
|
|
height: 0;
|
|
width: 0;
|
|
opacity: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: none;
|
|
outline: none;
|
|
background: none;
|
|
}
|
|
|
|
#cm {
|
|
display: none;
|
|
position: absolute;
|
|
z-index: 101;
|
|
border-radius: 10px;
|
|
border: 1.5px solid #6f6f6f30;
|
|
background: var(--cm);
|
|
backdrop-filter: blur(25px) saturate(2);
|
|
min-width: 200px;
|
|
overflow: hidden;
|
|
padding: 0px 4px 0 4px;
|
|
max-height: 0;
|
|
width: max-content;
|
|
transition: 110ms,max-height 200ms ease-in-out, top 100ms, left 100ms, padding 200ms ease-in-out,box-shadow 1s;
|
|
opacity: 0;
|
|
}
|
|
|
|
#cm.show {
|
|
max-height: 100%;
|
|
padding: 4px;
|
|
box-shadow: 3px 3px 25px 0px var(--sd);
|
|
opacity: 1;
|
|
}
|
|
|
|
#cm>list{
|
|
transform: translate(0,-50%);
|
|
opacity: 0;
|
|
transition: transform 200ms ease-in-out,opacity 150ms 50ms;
|
|
}
|
|
|
|
#cm.show>list{
|
|
opacity: 1;
|
|
transform: none;
|
|
}
|
|
|
|
#cm.show-begin {
|
|
display: block;
|
|
}
|
|
|
|
#cm>list>a {
|
|
padding: 4.5px 12px;
|
|
margin: 0 0;
|
|
border-radius: 7px;
|
|
font-size: 15px;
|
|
display: flex;
|
|
line-height: 19px;
|
|
}
|
|
|
|
#cm>list>a>.bi {
|
|
font-size: 17px;
|
|
margin-right: 4px;
|
|
display: block;
|
|
}
|
|
|
|
#cm>list>*:not(hr):hover {
|
|
background-color: var(--hover-b);
|
|
}
|
|
|
|
#dp {
|
|
display: none;
|
|
position: absolute;
|
|
box-shadow: 3px 3px 6px 1px var(--sd);
|
|
z-index: 101;
|
|
border-radius: 10px;
|
|
border: 1.5px solid #6f6f6f30;
|
|
background: var(--cm);
|
|
backdrop-filter: blur(20px) saturate(2);
|
|
min-width: 200px;
|
|
overflow: hidden;
|
|
transition: max-height 200ms ease-in-out;
|
|
padding: 4px;
|
|
max-height: 0;
|
|
}
|
|
|
|
#dp.show-begin {
|
|
display: block;
|
|
transition: max-height 200ms ease-in-out;
|
|
}
|
|
|
|
#dp.show {
|
|
max-height: 100%;
|
|
}
|
|
|
|
#dp>list>a {
|
|
padding: 4.5px 10px;
|
|
margin: 0;
|
|
transition: 80ms;
|
|
border-radius: 7px;
|
|
font-size: 14px;
|
|
display: flex;
|
|
line-height: 19px;
|
|
}
|
|
|
|
#dp>list>a>info {
|
|
float: right;
|
|
text-align: end;
|
|
color: #888;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#dp>list>a>.bi {
|
|
font-size: 19px;
|
|
margin-right: 4px;
|
|
display: block;
|
|
}
|
|
|
|
#dp>list>*:not(hr):hover {
|
|
background-color: var(--hover-b);
|
|
}
|
|
|
|
#descp{
|
|
position: fixed;
|
|
background: var(--cm);
|
|
border-radius: 6px;
|
|
box-shadow: 2px 2px 10px var(--sd);
|
|
z-index: 102;
|
|
border: 1.5px solid #4f4f4f30;
|
|
backdrop-filter: blur(15px) saturate(2);
|
|
font-size: 13px;
|
|
padding: 4px 7px;
|
|
margin: 0;
|
|
transition: opacity 100ms;
|
|
opacity: 0;
|
|
display: none;
|
|
}
|
|
|
|
#descp.show{
|
|
opacity: 1;
|
|
}
|
|
|
|
#descp.show-begin{
|
|
display: block;
|
|
}
|
|
|
|
list {
|
|
display: block;
|
|
padding-left: 0;
|
|
margin-bottom: 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
list>* {
|
|
width: 100%;
|
|
color: var(--text);
|
|
text-align: inherit;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
display: block;
|
|
padding: 2px 20px;
|
|
}
|
|
|
|
list>a{
|
|
transition: 80ms,transform 400ms cubic-bezier(0.14, 1.02, 0.17, 0.03);
|
|
}
|
|
|
|
|
|
list>a:hover {
|
|
color: var(--text);
|
|
background-color: var(--hover-half);
|
|
text-decoration: none;
|
|
box-shadow: 0 1px 2px var(--s3d);
|
|
}
|
|
|
|
list>hr {
|
|
width: calc(100% - 12px);
|
|
padding: 0 !important;
|
|
margin: 2px 6px;
|
|
background-color: #7f7f7f7f;
|
|
border-radius: 5px;
|
|
height: 0.75px;
|
|
cursor: inherit;
|
|
}
|
|
|
|
list>hr:hover {
|
|
background-color: #7f7f7f7f;
|
|
}
|
|
|
|
list>.text {
|
|
margin: 0;
|
|
cursor: inherit;
|
|
border: none;
|
|
}
|
|
|
|
list>.text:hover {
|
|
background-color: unset;
|
|
border: none;
|
|
}
|
|
|
|
list>span.focs{
|
|
display: block;
|
|
width: 4px;
|
|
height: 20px;
|
|
background: linear-gradient(0deg, var(--theme-1), var(--theme-2));
|
|
background-size: cover;
|
|
padding: 0;
|
|
border-radius: 2px;
|
|
position: relative;
|
|
margin: -30px 7px 0 7px;
|
|
z-index: 1;
|
|
transition: 500ms cubic-bezier(1, 0, 0, 1);
|
|
/* transform-origin: top; */
|
|
}
|
|
|
|
list>span.focs.cl{
|
|
animation: fcl 200ms cubic-bezier(1,0.8,0,0.2) 160ms;
|
|
}
|
|
|
|
@keyframes fcl {
|
|
0%{
|
|
transform: none;
|
|
}
|
|
50%{
|
|
transform: scaleY(2.5);
|
|
}
|
|
100%{
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.msg {
|
|
background-color: var(--bg50);
|
|
backdrop-filter: blur(50px) saturate(130%);
|
|
position: fixed;
|
|
right: -430px;
|
|
bottom: 60px;
|
|
width: 430px;
|
|
min-height: 150px;
|
|
z-index: 100;
|
|
border-radius: 10px;
|
|
box-shadow: 3px 3px 6px 1px var(--sd);
|
|
padding: 10px 20px;
|
|
font-size: 15px;
|
|
display: flex;
|
|
transition: 400ms 200ms cubic-bezier(0.9, 0, 0.1, 1),transform 200ms;
|
|
cursor: pointer;
|
|
border: 1.5px solid #6f6f6f30;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
.msg:hover {
|
|
transition: 80ms;
|
|
background-color: var(--hover-half);
|
|
}
|
|
|
|
.msg.show {
|
|
right: 20px;
|
|
transform: none;
|
|
}
|
|
|
|
.msg>.main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.msg>.hide {
|
|
height: 35px;
|
|
width: 35px;
|
|
min-width: 35px;
|
|
padding-left: 6px;
|
|
margin-right: -5px;
|
|
border-radius: 5px;
|
|
font-size: 23px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
.msg>.hide:hover {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.msg>.hide:active {
|
|
padding-left: 25px;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
.msg:not(.show)>.hide {
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.msg>.main>.tit {
|
|
font-size: 20px;
|
|
margin-bottom: 5px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
.msg>.main>.cont {
|
|
padding-left: 10px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
.window {
|
|
position: fixed;
|
|
height: 80%;
|
|
width: 70%;
|
|
transform: scale(0.7);
|
|
background-color: var(--unfoc);
|
|
border-radius: 10px;
|
|
border: 1.5px solid #6f6f6f30;
|
|
display: none;
|
|
opacity: 0;
|
|
transition: cubic-bezier(0.9, 0, 0.1, 1) 200ms;
|
|
overflow: hidden;
|
|
box-shadow: 2px 2px 5px var(--sd);
|
|
z-index: 98;
|
|
}
|
|
|
|
.window.foc>.titbar{
|
|
opacity: 1;
|
|
}
|
|
|
|
.window.foc {
|
|
background-color: var(--bg70);
|
|
backdrop-filter: blur(80px) saturate(1.5);
|
|
filter: none;
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.5);
|
|
box-shadow: 3px 3px 20px 3px var(--sd);
|
|
}
|
|
|
|
.window.webapp{
|
|
background: none;
|
|
backdrop-filter: none;
|
|
}
|
|
|
|
.window.webapp>.titbar{
|
|
outline: var(--href) solid 2px;
|
|
margin-bottom: 1px;
|
|
background-color: var(--unfoc);
|
|
opacity: 1;
|
|
}
|
|
|
|
.window.webapp.load,
|
|
.window.webapp.content{
|
|
background: var(--unfoc);
|
|
}
|
|
|
|
.window.webapp.foc>.titbar{
|
|
background-color: var(--bg70);
|
|
backdrop-filter: blur(80px) saturate(1.3);
|
|
-webkit-backdrop-filter: blur(80px) saturate(1.3);
|
|
}
|
|
|
|
.window.min {
|
|
top: calc(95%) !important;
|
|
left: 15% !important;
|
|
transform: scale(0.3) !important;
|
|
transition: cubic-bezier(0.9, 0, 0.1, 1) 200ms, top 200ms 100ms,backdrop-filter background-color 0s;
|
|
}
|
|
|
|
.window.show-begin {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.window.show {
|
|
transform: none;
|
|
height: 80%;
|
|
width: 70%;
|
|
opacity: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.window>.loadback {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
display: none;
|
|
}
|
|
|
|
.window>.loadback>.icon {
|
|
height: 90px;
|
|
width: 90px;
|
|
top: calc(50% - 45px);
|
|
left: calc(50% - 45px);
|
|
position: absolute;
|
|
}
|
|
|
|
.window.load>.loadback {
|
|
display: block;
|
|
}
|
|
|
|
.window.load>.content {
|
|
opacity: 0;
|
|
}
|
|
|
|
.window.calc {
|
|
height: 395px;
|
|
width: 262px;
|
|
}
|
|
|
|
.window.notepad-fonts {
|
|
height: 500px;
|
|
width: 430px;
|
|
}
|
|
|
|
.window.run {
|
|
width: 420px;
|
|
height: 220px;
|
|
left: 20px;
|
|
bottom: 60px;
|
|
}
|
|
|
|
.window.notrans {
|
|
transition: none !important;
|
|
}
|
|
|
|
.window>.titbar {
|
|
min-height: 35px;
|
|
padding: 0 0 0 8px;
|
|
display: flex;
|
|
position: initial;
|
|
color: var(--text);
|
|
opacity: 0.5;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.window>.titbar>p {
|
|
font-size: 16px;
|
|
margin-top: 5px;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.window>.titbar>.icon {
|
|
margin: 5px 5px 0 0;
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
|
|
.window>.titbar>div {
|
|
width: max-content;
|
|
min-width: max-content;
|
|
}
|
|
|
|
.window>.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0px !important;
|
|
}
|
|
|
|
.window.max {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
left: 0 !important;
|
|
top: 0 !important;
|
|
border-radius: 0;
|
|
border: none;
|
|
transition: cubic-bezier(0.9, 0, 0.1, 1) 200ms, top 200ms 100ms,backdrop-filter,background 0ms;
|
|
}
|
|
|
|
.window.left{
|
|
left: 0 !important;
|
|
top: 0 !important;
|
|
width: 50% !important;
|
|
height: 100% !important;
|
|
}
|
|
|
|
.window.right{
|
|
left: 50% !important;
|
|
top: 0 !important;
|
|
width: 50% !important;
|
|
height: 100% !important;
|
|
}
|
|
|
|
.wbtg {
|
|
height: 100%;
|
|
float: right;
|
|
width: 45px;
|
|
text-align: center;
|
|
padding-top: 7px;
|
|
font-size: 13px;
|
|
transition: 50ms;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.wbtg.red {
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.wbtg:hover {
|
|
background-color: var(--hover-b);
|
|
}
|
|
|
|
.wbtg:active{
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.wbtg.red:hover {
|
|
background-color: #d80d1c;
|
|
color: #fff;
|
|
}
|
|
|
|
.window.max .wbtg.red {
|
|
border-top-right-radius: 3px;
|
|
}
|
|
|
|
#window-fill {
|
|
background-color: var(--fill);
|
|
backdrop-filter: blur(25px);
|
|
display: none;
|
|
position: fixed;
|
|
transition: all 200ms;
|
|
margin: 10px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 10px 1px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
}
|
|
|
|
#window-fill.top {
|
|
width: 0;
|
|
height: 0;
|
|
top: 0;
|
|
left: 50%;
|
|
display: block;
|
|
}
|
|
|
|
#window-fill.top.fill {
|
|
width: calc(100% - 20px);
|
|
height: calc(100% - 20px);
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
#window-fill.left {
|
|
width: 0;
|
|
height: 0;
|
|
top: 50%;
|
|
left: 0;
|
|
display: block;
|
|
}
|
|
|
|
#window-fill.left.fill {
|
|
width: calc(50% - 20px);
|
|
height: calc(100% - 20px);
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
#window-fill.right {
|
|
width: 0;
|
|
height: 0;
|
|
top: 50%;
|
|
left: 100%;
|
|
display: block;
|
|
}
|
|
|
|
#window-fill.right.fill {
|
|
width: calc(50% - 20px);
|
|
height: calc(100% - 20px);
|
|
top: 0;
|
|
left: 50%;
|
|
}
|
|
|
|
.buttons {
|
|
display: inline-block;
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 15px;
|
|
}
|
|
|
|
.buttons>* {
|
|
display: inline-block;
|
|
padding: 5px 10px;
|
|
border-radius: 10px;
|
|
margin: 0px 5px;
|
|
transition: transform 400ms cubic-bezier(0.14, 1.02, 0.17, 0.03) !important;
|
|
box-shadow: 2px 2px 4px var(--sd);
|
|
}
|
|
|
|
.buttons>*:hover{
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
.buttons>*:active {
|
|
transform: scale(0.85);
|
|
}
|
|
|
|
.buttons>.submit {
|
|
background-image: linear-gradient(120deg, var(--theme-1), var(--theme-2));
|
|
color: #fff;
|
|
}
|
|
|
|
.buttons>.cancel {
|
|
background-color: var(--bggrey);
|
|
}
|
|
|
|
/* 一些奇怪的东西 */
|
|
|
|
.window.whiteboard>.titbar>p{
|
|
color: #000 !important;;
|
|
}
|
|
|
|
:root.dark .window.whiteboard>.titbar>p{
|
|
text-shadow: 0 0 5px #fff,0 0 5px #fff;
|
|
} |