Skip to content

Commit

Permalink
update (styles) : improvements (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
codexarama committed May 17, 2021
1 parent a629209 commit de4130b
Show file tree
Hide file tree
Showing 11 changed files with 124 additions and 102 deletions.
104 changes: 55 additions & 49 deletions css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 31 additions & 12 deletions sass/base/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@ body {
@include font();
}

.btn-homepage {
.evitement {
font-size: $xs;
color: $primaire-a;

&:hover {
color: $secondaire-a;
}
}

.header {
&__tags {
font-size: $xs;
font-size: $s;
}

&__headline {
Expand All @@ -24,11 +29,11 @@ nav {

.card {
&__name {
font-size: $l;
font-size: $xxl;
font-weight: $regular;
color: $primaire-txt;
border-radius: 3px;
line-height: 1,5em;
line-height: 1, 5em;

&:focus {
outline: none;
Expand All @@ -37,10 +42,10 @@ nav {
}

&__location {
font-size: $m;
font-size: $l;
color: $secondaire-txt;
border-radius: 3px;
line-height: 1,5em;
line-height: 1, 5em;

&:focus {
outline: none;
Expand All @@ -60,7 +65,7 @@ nav {
}

&__price {
font-size: $xs;
font-size: $s;
font-weight: $light;
border-radius: 3px;
line-height: 2em;
Expand All @@ -73,10 +78,6 @@ nav {
}

.filter {
&__title {
font-size: $m;
}

&__title,
&__select {
font-weight: $bold;
Expand All @@ -90,9 +91,27 @@ nav {

.gallery {
color: $secondaire-txt;
font-size: $m;
}

.footer {
font-weight: $bold;
}

@media only screen and (max-width: 600px) {
.card {
&__name {
font-size: $l;
}

&__location {
font-size: 0.9em;
}
&__tagline {
font-size: $xs;

}
&__price {
font-size: $xs;
}
}
}
Loading

0 comments on commit de4130b

Please sign in to comment.