mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-25 17:53:56 +01:00
30 lines
786 B
CSS
30 lines
786 B
CSS
body:not(.dark-mode) .component_filedownloader {
|
|
background: var(--surface);
|
|
}
|
|
body.dark-mode .component_filedownloader {
|
|
background: #232426;
|
|
}
|
|
|
|
.component_filedownloader {
|
|
display: block!important;
|
|
text-align: center;
|
|
}
|
|
|
|
.component_filedownloader .download_button {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
color: rgba(255,255,255,0.6);
|
|
margin-top: 50px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
box-shadow: rgba(0,0,0,.14) 0px 4px 5px 0px, rgba(0,0,0,.12) 0px 1px 10px 0px, rgba(0,0,0,.2) 0px 2px 4px -1px;
|
|
}
|
|
.component_filedownloader .download_button > * {
|
|
display: inline-block;
|
|
padding: 15px 20px;
|
|
}
|
|
.component_filedownloader component-icon img {
|
|
height: 20px;
|
|
float: right;
|
|
}
|