Allow the big download button to be defined using the colour palette values (#7064)

This commit is contained in:
Mario Pietsch 2022-11-26 12:15:47 +01:00 committed by GitHub
parent 850a4dd351
commit 97f7db169a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -183,17 +183,17 @@ div.content {
.tc-btn-download {
padding: 10px 30px;
border-radius: 5px;
background: #1462ff;
border: none;
box-shadow: 0 2px 2px 0 #4a74c9;
background: <<colour "download-background">>;
border: none;
box-shadow: 1px 2px 2px 0 <<colour muted-foreground>>;
overflow: hidden;
cursor: pointer;
font-size: 1.2em;
line-height: 1.4em;
color: #fff;
fill: #fff;
font-size: 1.2em;
line-height: 1.4em;
color: #fff;
fill: #fff;
}
.tc-btn-download:active {
background: #1475ff;
box-shadow: none;
}