mirror of
https://github.com/tjy-gitnub/win12.git
synced 2026-09-21 12:44:02 +08:00
208 lines
3.7 KiB
CSS
208 lines
3.7 KiB
CSS
#win-explorer{
|
|
display: flex;
|
|
}
|
|
|
|
#win-explorer>.menu{
|
|
min-width: 250px;
|
|
height: 100%;
|
|
}
|
|
|
|
#win-explorer>.menu>.card{
|
|
margin: 10px;
|
|
border-radius: 10px;
|
|
background-color: var(--card);
|
|
padding: 3px;
|
|
box-shadow: 2px 2px 5px var(--sd);
|
|
border: 1.5px solid #6f6f6f30;
|
|
}
|
|
|
|
#win-explorer>.menu>.card>.title{
|
|
padding: 6px 10px;
|
|
font-weight: 550;
|
|
}
|
|
|
|
#win-explorer>.menu>.card>list>a{
|
|
padding: 4px 5px 4px 20px;
|
|
font-size: 15px;
|
|
border-radius: 7px;
|
|
transition: 100ms;
|
|
display: flex;
|
|
}
|
|
|
|
#win-explorer>.menu>.card>list>a.check{
|
|
background-color: var(--hover) !important;
|
|
}
|
|
|
|
#win-explorer>.menu>.pinned>list>a>img{
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-top: 2px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#win-explorer>.menu>.tags>list>a>span{
|
|
width: 13px;
|
|
height: 13px;
|
|
margin-left: 4px;
|
|
margin-top: 4px;
|
|
margin-right: 7px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 5px var(--sd);
|
|
}
|
|
|
|
#win-explorer>.main{
|
|
flex-grow: 1;
|
|
height: calc(100% - 32px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#win-explorer>.main>.tool{
|
|
width: 100%;
|
|
height: 60px;
|
|
display: flex;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.b{
|
|
height: 40px;
|
|
padding: 7px;
|
|
border-radius: 10px;
|
|
transition: 100ms;
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.b.t{
|
|
display: flex;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.b.t>img{
|
|
display: flex;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.b:hover{
|
|
background-color: var(--hover);
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.b>img{
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|
|
|
|
#win-explorer>.main>.tool>.hr{
|
|
width: 2px;
|
|
height: 35px;
|
|
background-color: #7f7f7f7f;
|
|
border-radius: 10px;
|
|
margin: 2.5px 7px;
|
|
}
|
|
|
|
#win-explorer>.main>.content{
|
|
width: calc(100% - 10px);
|
|
flex-grow: 1;
|
|
background-color: var(--card);
|
|
border-radius: 10px;
|
|
margin: -10px 10px 10px 0;
|
|
padding: 8px;
|
|
box-shadow: 3px 3px 8px var(--sd);
|
|
overflow-y: auto;
|
|
border: 1.5px solid #6f6f6f30;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool{
|
|
height: 40px;
|
|
width: 100%;
|
|
display: flex;
|
|
padding: 10px 0 0 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.btn>.bi::before{
|
|
position: relative;
|
|
top: -2px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.btn{
|
|
transition: 100ms;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.tit>img{
|
|
width: 22px;
|
|
height: 22px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.tit{
|
|
display: flex;
|
|
margin-top: 3px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.search{
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.search>*{
|
|
float: right;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.search>.input{
|
|
width: 300px;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.tool>.search>input-before{
|
|
margin-top: 4px;
|
|
margin-right: -23px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view{
|
|
width: 100%;
|
|
height: max-content;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>*{
|
|
animation: exp-show 200ms;
|
|
}
|
|
|
|
@keyframes exp-show {
|
|
0%{
|
|
transform: scale(0.9) translate(0,50%);
|
|
opacity: 0;
|
|
}
|
|
100%{
|
|
transform: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>.info{
|
|
color: #888;
|
|
text-align: center;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>.item{
|
|
width: 100%;
|
|
padding: 2px 5px;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
border: 1.5px solid transparent;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>.item:active{
|
|
transform: scale(0.98);
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>.item>img{
|
|
width: 26px;
|
|
height: 26px;
|
|
}
|
|
|
|
#win-explorer>.main>.content>.view>.item:hover{
|
|
background-color: var(--hover);
|
|
border: 1.5px solid #6f6f6f30;
|
|
} |