vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/scss/import/_footer.scss

49 lines
1,014 B
SCSS
Raw Normal View History

2020-09-27 21:09:15 +02:00
footer {
2020-10-20 19:24:47 +02:00
background: $bg30;
border-top: 1px solid $bg40;
color: $white-dark;
text-transform: lowercase;
2020-09-27 21:09:15 +02:00
.ui.container {
display: flex;
align-items: center;
min-height: 64px;
width: 1127px !important;
.links {
margin-left: auto;
a {
2020-10-20 19:24:47 +02:00
color: $white-dark;
2020-09-27 21:09:15 +02:00
&:hover {
text-decoration: underline;
}
}
> * {
border: 0;
padding: 0;
margin-left: 30px;
2020-09-27 21:09:15 +02:00
}
a {
&[href*="/api/swagger"] {
@if $vrifoxcustomization == true and $type == frontend {
display: none;
}
}
&[href*="gitea.io"]:not(.customlink) {
@if $vrifoxcustomization == true {
display: none;
}
}
}
.version {
@if $vrifoxcustomization == true and $type == frontend {
display: none;
}
}
@if $disablelanguagebutton == true {
.language {
display: none;
}
2020-09-27 21:09:15 +02:00
}
}
}
}