mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 10:56:31 +08:00
33 lines
877 B
SCSS
33 lines
877 B
SCSS
body:not(.dark-mode) .component_filedownloader {
|
|
background: #525659;
|
|
.download_button a > div { color: var(--light); }
|
|
}
|
|
.component_filedownloader {
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
.download_button{
|
|
padding: 15px 20px;
|
|
background: var(--dark);
|
|
border-radius: 3px;
|
|
color: inherit;
|
|
display: inline-block;
|
|
margin-top: 50px;
|
|
box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
|
|
|
|
// normal download button
|
|
a > div {
|
|
font-size: 17px;
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
color: rgba(255,255,255,0.4);
|
|
font-weight: bold;
|
|
}
|
|
// loading
|
|
> div {
|
|
display: inline-block;
|
|
height: 20px;
|
|
}
|
|
}
|
|
}
|