Overview
| Comment: | make css work with dillo |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b8722bb3e87332d0af80d8cbf83ba4f4 |
| User & Date: | lexi on 2019-07-29 06:29:05 |
| Other Links: | manifest | tags |
Context
|
2019-08-07
| ||
| 09:47 | add further wrappings to nkvd.c; nearly works with alpine now check-in: dc9aa070c7 user: lexi tags: trunk | |
|
2019-07-29
| ||
| 06:29 | make css work with dillo check-in: b8722bb3e8 user: lexi tags: trunk | |
| 06:11 | add fabulist stylesheet check-in: 689acafd82 user: lexi tags: trunk | |
Changes
Modified fabulist.scss from [4bdf92a95d] to [bf1a588345].
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
label {
margin-right: 0.5em;
margin-bottom: 0.5em;
margin-top: 0.5em;
font-weight: bold;
}
}
a[href] {
$a-color: #FF2E84;
color: $a-color;
text-decoration-color: darken($a-color,30);
&:hover {
color: lighten($a-color,40);
text-decoration-color: lighten($a-color,20);
}
}
h1 {
font-weight: 100;
margin-bottom: 0.0em;
border-bottom: 1px solid #FF7AB1;
a[href] {
color: #FF7AB1;
text-decoration: none;
}
}
|
| | |
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
label {
margin-right: 0.5em;
margin-bottom: 0.5em;
margin-top: 0.5em;
font-weight: bold;
}
}
a, a[href] { /* a for dillo's benefit */
$a-color: #FF2E84;
color: $a-color;
text-decoration-color: darken($a-color,30);
&:hover {
color: lighten($a-color,40);
text-decoration-color: lighten($a-color,20);
}
}
h1 {
font-weight: 100;
margin-bottom: 0.0em;
border-bottom: 1px solid #FF7AB1;
a, a[href] {
color: #FF7AB1;
text-decoration: none;
}
}
|