mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 16:29:37 +00:00
0de546009e
* CSS color variables, less bold font weight - Define color variables for fully saturated colors and apply them where it made sense - Add background color helper classes - Globally reduce bold font weight from 700 to 500 - Remove border from timeline icons - Unify dropzone styling - Various border style consolidations * attempt to fix test * another attempt at tests * fix contains
61 lines
821 B
Text
61 lines
821 B
Text
.home {
|
|
.logo {
|
|
max-width: 220px;
|
|
}
|
|
|
|
.hero {
|
|
@media only screen and (max-width: 767px) {
|
|
h1 {
|
|
font-size: 3.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2em;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
h1 {
|
|
font-size: 5.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 3em;
|
|
}
|
|
}
|
|
|
|
.svg {
|
|
color: var(--color-green);
|
|
height: 40px;
|
|
width: 50px;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
&.header {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
p.large {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.stackable {
|
|
padding-top: 30px;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-green);
|
|
}
|
|
}
|
|
|
|
footer {
|
|
.ui.container .left,
|
|
.ui.container .right {
|
|
@media only screen and (max-width: 880px) {
|
|
display: block;
|
|
text-align: center;
|
|
float: none;
|
|
}
|
|
}
|
|
}
|