Replace explicit values with new variables
This commit is contained in:
parent
10ed3e8630
commit
42d07f8561
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue