Version 0.2.0 - PREVERSION - Ajout READ de l'explorateur
All checks were successful
Neutral/pipeline/head This commit looks good

This commit is contained in:
Raphix
2023-11-03 14:25:39 +01:00
parent 9c1074de80
commit 5e97ff4853
12 changed files with 782 additions and 24 deletions

View File

@ -6,7 +6,7 @@ body {
color: white;
font-size: 20px;
font-family: 'Roboto', sans-serif !important;
overflow: hidden;
}
html {
@ -58,6 +58,21 @@ html {
text-decoration: none;
}
.btn-cover {
color: white;
transition: 0.1s;
cursor: pointer;
}
.btn-cover:hover {
color: rgba(255, 255, 255, 0.675);
}
.btn-cover:active {
color: rgba(255, 255, 255, 0.575);
}
/* Miniaturiez Button */
.min {
@ -404,4 +419,160 @@ a {
.view-image {
font-size: 72px;
}
}
/*ViewWindow*/
.view-window {
position: absolute;
z-index: 1;
background-color: #605e58c1;
backdrop-filter: blur(10px);
border-radius: 0.5vw;
-webkit-user-drag: auto;
}
.view-window-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: rgba(33, 32, 33, 0.753);
border-top-right-radius: 0.5vw;
border-top-left-radius: 0.5vw;
user-select: none;
}
/* Files Explorer */
.fx-window {
display: flex;
flex-direction: column;
}
.fx-root-input {
background-color: #323031;
border: solid 1px #323031;
border-radius: 0.5vw;
padding: 1%;
color: white;
outline:0px;
width: 100%;
}
.fx-explorer {
display: flex;
flex-direction: column;
overflow-y: auto ;
height: 450px;
gap: 20px
}
.fx-element {
display: grid;
grid-template-columns: 3fr 1fr 2fr;
grid-column-gap: 10px;
align-items: center;
padding: 5px;
padding-left: 30px;
padding-right: 30px;
font-size: 14px;
transition: 0.1s;
}
.fx-element div {
display: flex;
justify-content: start;
gap: 10px;
align-items: center;
}
.fx-element:hover {
background-color: rgba(44, 40, 42, 0.614);
}
.fx-actions {
justify-content: end !important;
width: 100%;
}
.fx-bar {
margin: 1%;
display: flex;
gap: 10px;
align-items: center;
}
.fx-bar-actions {
width: 30%;
display: flex;
flex-direction: row;
gap: 10px;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: auto;
scrollbar-color: #ff5d51 #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 13px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: #ff5d51;
border-radius: 17px;
border: 2px solid transparent;
}
/* Dropable Menu */
.dm-menu {
position: absolute;
display: flex;
flex-direction: column;
width: 150px;
border-radius: 0.5vw;
z-index: 3;
height: auto;
}
.dm-element {
background-color: #1a1819c9;
padding: 10px;
cursor: pointer;
font-size: 14px;
display: grid;
grid-template-columns: 0.2fr 0.8fr;
}
.dm-element:hover {
background-color: #ffffffc9;
color:black
}