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;
}
}
|