85 lines
1.5 KiB
CSS
85 lines
1.5 KiB
CSS
body {
|
|
font-family: 'Quicksand', sans-serif;
|
|
background: rgb(242, 242, 242);
|
|
}
|
|
|
|
.pobieranie {
|
|
padding: 40px;
|
|
font-family: 'Quicksand', sans-serif;
|
|
}
|
|
|
|
.box {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-family: 'Quicksand', sans-serif;
|
|
}
|
|
|
|
.pliki {
|
|
line-height: 25px;
|
|
width: 500px;
|
|
max-width: 100vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
input {
|
|
font-family: 'Quicksand', sans-serif;
|
|
}
|
|
|
|
.pliki a {
|
|
color: black;
|
|
}
|
|
|
|
.pliki .plik {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.plik .name, .plik .delete {
|
|
padding: 7px 12px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.pliki .plik .name {
|
|
background: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 5px;
|
|
flex: 1;
|
|
border-top-left-radius: 20px;
|
|
border-bottom-left-radius: 20px;
|
|
border-right: rgb(208, 208, 208) solid 1px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.pliki .plik .name:hover {
|
|
background: rgb(72, 91, 255);
|
|
color: white;
|
|
}
|
|
|
|
.pliki .plik .delete {
|
|
background: white;
|
|
color: red;
|
|
border-top-right-radius: 20px;
|
|
border-bottom-right-radius: 20px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.pliki .plik .delete:hover {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
|
|
.path {
|
|
border-radius: 10px;
|
|
font-family: 'Fira Code', monospace;
|
|
padding: 3px 5px;
|
|
font-size: 17px;
|
|
border: black 1px solid;
|
|
} |