added link color variable
This commit is contained in:
@@ -491,7 +491,7 @@ h2 {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ input[type="text"] {
|
|||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export default {
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "./src/styles/media-queries";
|
@import "./src/styles/media-queries";
|
||||||
|
@import "./src/styles/variables";
|
||||||
|
|
||||||
.wine-image {
|
.wine-image {
|
||||||
height: 250px;
|
height: 250px;
|
||||||
@@ -110,7 +111,7 @@ a:visited {
|
|||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ h1 {
|
|||||||
|
|
||||||
.generator-link {
|
.generator-link {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.win,
|
.win,
|
||||||
|
|||||||
@@ -234,7 +234,7 @@ export default {
|
|||||||
|
|
||||||
.generator-link {
|
.generator-link {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ textarea {
|
|||||||
|
|
||||||
.vin-link {
|
.vin-link {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,3 +15,5 @@ $dark-yellow: #ecc31d;
|
|||||||
$light-red: #fbd7de;
|
$light-red: #fbd7de;
|
||||||
$red: #ef5878;
|
$red: #ef5878;
|
||||||
$dark-red: #ec3b61;
|
$dark-red: #ec3b61;
|
||||||
|
|
||||||
|
$link-color: #ff5fff;
|
||||||
@@ -165,7 +165,7 @@ a:visited {
|
|||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@import "./src/styles/variables";
|
||||||
@import "../styles/media-queries.scss";
|
@import "../styles/media-queries.scss";
|
||||||
.wine-window-outer {
|
.wine-window-outer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@@ -261,7 +262,7 @@ ol {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-bottom: 1px solid #ff5fff;
|
border-bottom: 1px solid $link-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.truncate {
|
.truncate {
|
||||||
|
|||||||
Reference in New Issue
Block a user