Replace explicit values with new variables

This commit is contained in:
Ramon Wenger 2019-02-27 16:19:51 +01:00
parent 10ed3e8630
commit 42d07f8561
8 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@
<title>skillbox</title>
<link href='https://fonts.googleapis.com/css?family=Material+Icons' rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700" rel="stylesheet">
<link href="https://use.typekit.net/tck7ptw.css" rel="stylesheet">
<script>

View File

@ -48,7 +48,7 @@
font-size: toRem(17px);
font-family: $sans-serif-font-family;
margin-bottom: 20px;
font-weight: 500;
font-weight: $font-weight-regular;
overflow-wrap: break-word;
word-wrap: break-word;
@ -69,7 +69,7 @@
&__explanation-text {
color: $color-brand;
font-family: $sans-serif-font-family;
font-weight: 500;
font-weight: $font-weight-regular;
}
}
</style>

View File

@ -72,7 +72,7 @@
justify-content: center;
align-items: center;
font-family: $sans-serif-font-family;
font-weight: 500;
font-weight: $font-weight-regular;
text-decoration: underline;
}
}

View File

@ -62,7 +62,7 @@
justify-content: center;
align-items: center;
font-family: $sans-serif-font-family;
font-weight: 500;
font-weight: $font-weight-regular;
text-decoration: underline;
}
}

View File

@ -81,7 +81,7 @@
&__platform-link {
font-family: $sans-serif-font-family;
text-decoration: underline;
font-weight: 500;
font-weight: $font-weight-regular;
font-size: toRem(17px);
}

View File

@ -61,12 +61,12 @@
&__title {
font-size: 1.5em;
font-weight: bold;
font-weight: $font-weight-bold;
margin-bottom: 5px;
}
&__description {
line-height: 1.5;
line-height: $default-line-height;
font-size: 1.2rem;
}
}

View File

@ -99,7 +99,7 @@
&__intro {
font-family: $sans-serif-font-family;
font-weight: 500;
font-weight: $font-weight-regular;
font-size: toRem(17px);
max-width: 900px;
line-height: 1.5;

View File

@ -7,12 +7,12 @@
&__description {
font-family: $sans-serif-font-family;
font-size: toRem(17px);
font-weight: 500;
font-weight: $font-weight-regular;
}
&__link {
font-family: $sans-serif-font-family;
text-decoration: underline;
font-weight: 500;
font-weight: $font-weight-regular;
font-size: toRem(17px);
}
}