Code clean

This commit is contained in:
2020-03-27 11:14:16 +01:00
parent b77f67d3b3
commit ebf1d99645
4 changed files with 29 additions and 28 deletions

View File

@@ -191,9 +191,11 @@ button {
color: $color-tertiary;
text-transform: uppercase;
letter-spacing: 1px;
}
.style-caps--transparent {
color: rgba($color-tertiary, 0.5);
// Transparent variant
&--transparent {
color: rgba($color-tertiary, 0.5);
}
}
.style-description {

View File

@@ -65,25 +65,25 @@
background-color: $color-secondary;
border-radius: 100%;
}
}
// Place
.pin--place {
font-family: $font-serif;
// Place pin
&--place {
font-family: $font-serif;
a {
color: $color-secondary;
text-decoration: none;
a {
color: $color-secondary;
text-decoration: none;
}
}
}
// Country
.pin--country {
font-family: $font-sans;
font-size: rem(10px);
color: rgba(#fff, 0.5);
text-transform: uppercase;
letter-spacing: 1px;
// Country text
&--country {
font-family: $font-sans;
font-size: rem(10px);
color: rgba(#fff, 0.5);
text-transform: uppercase;
letter-spacing: 1px;
}
}
}