Настроен цвет линеек
This commit is contained in:
parent
db10a7141c
commit
670ecdfe68
@ -36,6 +36,6 @@ a:active {
|
|||||||
.hr-line {
|
.hr-line {
|
||||||
height: 0;
|
height: 0;
|
||||||
display: block;
|
display: block;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid $rule-color;
|
||||||
margin: 2em 0;
|
margin: 2em 0;
|
||||||
}
|
}
|
||||||
|
@ -31,3 +31,13 @@ code {
|
|||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
color: $rule-color;
|
||||||
|
border-top: 1px solid $rule-color;
|
||||||
|
border-left: none;
|
||||||
|
border-right: none;
|
||||||
|
border-bottom: none;
|
||||||
|
margin-block-start: 1em;
|
||||||
|
margin-block-end: 1em;
|
||||||
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
@import '../vars';
|
||||||
|
|
||||||
.navigation {
|
.navigation {
|
||||||
display: block;
|
display: block;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid $rule-color;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
||||||
&__actions {
|
&__actions {
|
||||||
|
@ -99,6 +99,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@import '../vars';
|
||||||
@import '../components/button';
|
@import '../components/button';
|
||||||
|
|
||||||
.app {
|
.app {
|
||||||
@ -117,7 +118,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: #ccc;
|
border-color: $rule-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,3 +14,5 @@ $preferred-width: 740px;
|
|||||||
$first-media-step: $preferred-width - 1px;
|
$first-media-step: $preferred-width - 1px;
|
||||||
|
|
||||||
$mobile-margin: 0.8em;
|
$mobile-margin: 0.8em;
|
||||||
|
|
||||||
|
$rule-color: #e6e6e6;
|
||||||
|
Loading…
Reference in New Issue
Block a user