2018-02-22 11:03:48 +11:00
|
|
|
$maximum-width: 1235px;
|
|
|
|
$fluid-breakpoint: $maximum-width + 20px;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
box-sizing: border-box;
|
|
|
|
max-width: $maximum-width;
|
|
|
|
margin: 0 auto;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@media screen and (max-width: $fluid-breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 23:42:37 +11:00
|
|
|
.brand {
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
2018-08-09 20:58:20 +10:00
|
|
|
}
|
|
|
|
|
2022-10-13 23:42:37 +11:00
|
|
|
.rules-list {
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: $primary-text-color;
|
|
|
|
counter-reset: list-counter;
|
2018-08-09 20:58:20 +10:00
|
|
|
|
2017-08-26 01:19:35 +10:00
|
|
|
li {
|
2022-10-13 23:42:37 +11:00
|
|
|
position: relative;
|
|
|
|
border-bottom: 1px solid lighten($ui-base-color, 8%);
|
|
|
|
padding: 1em 1.75em;
|
2023-03-27 19:56:25 +11:00
|
|
|
padding-inline-start: 3em;
|
2017-08-26 01:19:35 +10:00
|
|
|
font-weight: 500;
|
2022-10-13 23:42:37 +11:00
|
|
|
counter-increment: list-counter;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: counter(list-counter);
|
|
|
|
position: absolute;
|
2023-03-27 19:56:25 +11:00
|
|
|
inset-inline-start: 0;
|
2022-10-13 23:42:37 +11:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
background: $highlight-text-color;
|
|
|
|
color: $ui-base-color;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 4ch;
|
|
|
|
height: 4ch;
|
2019-02-14 04:36:40 +11:00
|
|
|
font-weight: 500;
|
2018-02-27 02:19:07 +11:00
|
|
|
display: flex;
|
2022-10-13 23:42:37 +11:00
|
|
|
justify-content: center;
|
2018-02-22 11:03:48 +11:00
|
|
|
align-items: center;
|
2018-07-03 09:48:09 +10:00
|
|
|
}
|
|
|
|
|
2021-02-22 05:50:12 +11:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|