Some checks failed
continuous-integration/drone/push Build is failing
Co-authored-by: sora-ext Co-authored-by: soraefir Reviewed-on: #160
148 lines
1.7 KiB
CSS
148 lines
1.7 KiB
CSS
/**
|
|
* TYPOGRAPHY
|
|
*/
|
|
body {
|
|
color: #272727;
|
|
font-family: "Lato", sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
a {
|
|
color: var(--blue);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: color-mix(in srgb, var(--color-primary), #FFF 15%);
|
|
}
|
|
|
|
a:focus {
|
|
color: var(--blue);
|
|
}
|
|
|
|
.text-huge,
|
|
.text-big,
|
|
.text-medium {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.text-huge {
|
|
font-size: 36px;
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
.text-big {
|
|
font-size: 24px;
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
.text-medium {
|
|
font-size: 16px;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.text-small {
|
|
font-size: 12px;
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
.text-body {
|
|
font-size: 16px;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #03a9f4;
|
|
}
|
|
|
|
.text-dark {
|
|
color: #18232f;
|
|
}
|
|
|
|
.text-secondary {
|
|
color: #e91e63;
|
|
}
|
|
|
|
.text-white {
|
|
color: #fff;
|
|
}
|
|
|
|
.text-success {
|
|
color: #4caf50;
|
|
}
|
|
|
|
.text-info {
|
|
color: #5bc0de;
|
|
}
|
|
|
|
.text-warning {
|
|
color: #f0ad4e;
|
|
}
|
|
|
|
.text-error {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
.text-gray {
|
|
color: #969da6;
|
|
}
|
|
|
|
.text-gray-light {
|
|
color: #eceff1;
|
|
}
|
|
|
|
.text-light {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.text-normal {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.text-lineThrough {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.text-italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.text-underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-withSubtitle {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.text-withSubtitle+.text-huge,
|
|
.text-withSubtitle+.text-big,
|
|
.text-withSubtitle+.text-medium,
|
|
.text-withSubtitle+.text-small {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left;
|
|
} |