mirror of
https://github.com/tjy-gitnub/win12.git
synced 2026-08-30 17:49:08 +08:00
b498ae1be5
优化计算器、断网页面(深色模式)、以及一些细节
292 lines
5.2 KiB
CSS
292 lines
5.2 KiB
CSS
.wg {
|
|
border-radius: 10px;
|
|
box-shadow: 1px 2px 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>.bi {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.wg.toolbar {
|
|
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);
|
|
margin: 0 3px;
|
|
}
|
|
|
|
.wg.toolbar>.titbar>.more {
|
|
width: 18px;
|
|
height: 18px;
|
|
font-size: 13px;
|
|
opacity: 0;
|
|
}
|
|
|
|
.wg.toolbar:hover>.titbar>.more {
|
|
opacity: 1;
|
|
}
|
|
|
|
.wg.toolbar>.titbar>.menu>.a.addtotb {
|
|
display: none;
|
|
}
|
|
|
|
.wg.calc {
|
|
grid-column-start: span 2;
|
|
grid-row-start: span 3;
|
|
}
|
|
|
|
.wg.calc>.content {
|
|
display: grid;
|
|
grid-template-areas:
|
|
"input input input input"
|
|
"pow sqrt c jia"
|
|
"n7 n8 n9 jian"
|
|
"n4 n5 n6 cheng"
|
|
"n1 n2 n3 chu"
|
|
"dot n0 back ans";
|
|
grid-template-columns: repeat(4, 25%);
|
|
grid-template-rows: 25% repeat(5, 15%);
|
|
gap: 0px;
|
|
}
|
|
|
|
.wg.calc>.content>p {
|
|
grid-area: input;
|
|
border: none;
|
|
outline: none;
|
|
background-color: #00000000;
|
|
font-size: 33px;
|
|
padding-top: 15px;
|
|
text-align: end;
|
|
color: var(--text);
|
|
width: 100%;
|
|
}
|
|
|
|
.wg.calc>.content>.b {
|
|
margin: 5px 5px;
|
|
font-size: 25px;
|
|
margin: 0;
|
|
border: 1px solid var(--hr);
|
|
text-align: center;
|
|
transition: 50ms;
|
|
background: var(--card);
|
|
}
|
|
|
|
.wg.calc>.content>.b.u {
|
|
/* padding-top: 3px; */
|
|
}
|
|
|
|
.wg.calc>.content>.b.ans {
|
|
border: none;
|
|
background-image: linear-gradient(120deg, var(--theme-1), var(--theme-2));
|
|
filter: opacity(0.7);
|
|
}
|
|
|
|
.wg.calc>.content>.b.ans:hover {
|
|
filter: none;
|
|
}
|
|
|
|
.wg.calc>.content>.b:hover {
|
|
background-color: var(--mm);
|
|
}
|
|
|
|
.wg.weather.menu {
|
|
grid-column-start: span 3;
|
|
grid-row-start: span 2;
|
|
}
|
|
|
|
.wg.weather>.content {
|
|
display: flex;
|
|
}
|
|
|
|
.wg.weather.menu>.content>.img {
|
|
width: 70px;
|
|
height: 100%;
|
|
background-size: cover;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.wg.weather.menu>.content>.text>.temperature {
|
|
font-size: 30px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.wg.weather>.content>.text {
|
|
padding-top: 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.wg.toolbar.weather>.content>.img {
|
|
width: 30px;
|
|
height: 100%;
|
|
margin: 0 5px 0 10px;
|
|
}
|
|
|
|
.wg.toolbar.weather>.content>.text {
|
|
font-size: 8px;
|
|
padding-top: 5px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.wg.toolbar.weather>.content>.text>.temperature {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.wg.monitor {
|
|
grid-column-start: span 3;
|
|
grid-row-start: span 2;
|
|
}
|
|
|
|
.wg.monitor>.content>.text>.type {
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
.wg.monitor>.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.wg.monitor>.content>.container {
|
|
width: 60px;
|
|
height: 60px;
|
|
position: relative;
|
|
margin-left: 13px;
|
|
}
|
|
|
|
.wg.monitor>.content>.container>.text {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.wg.monitor>.content>.container>svg>circle:first-child {
|
|
fill: none;
|
|
stroke: var(--hover-b);
|
|
stroke-width: 6px;
|
|
}
|
|
|
|
.wg.monitor>.content>.container>svg>circle:last-child {
|
|
stroke: #fff;
|
|
fill: none;
|
|
stroke-width: 2px;
|
|
transform: rotate(90deg);
|
|
stroke-width: 6px;
|
|
stroke-linecap: round;
|
|
}
|
|
|
|
.wg.monitor>.content>.container>div.text {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 60px;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.wg.monitor.toolbar>.content {
|
|
font-size: 0.7em;
|
|
gap: 10px;
|
|
min-width: 180px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.wg.monitor.toolbar>.content>.container, .wg.monitor.toolbar>.content>.container>svg, .wg.monitor.toolbar>.content>.container>.text {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
|
|
.wg.monitor.toolbar>.content>.container>svg>circle {
|
|
cx: 20px;
|
|
cy: 20px;
|
|
r: 15px;
|
|
stroke-width: 5px;
|
|
}
|
|
|
|
.wg.monitor.toolbar>.content>.container>svg>circle:last-child {
|
|
cy: -20px !important;
|
|
}
|
|
|
|
/* .wg.monitor.toolbar>.content>.text {
|
|
font-siz
|
|
} */
|