1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00
tobspr_shapez.io/src/css/states/changelog.scss

32 lines
704 B
SCSS
Raw Normal View History

2020-05-23 13:04:55 +00:00
#state_ChangelogState {
.content {
@include S(max-width, 800px);
2020-05-23 13:04:55 +00:00
display: flex;
flex-direction: column;
}
.entry {
padding: 20px;
.version {
@include Heading;
}
.date {
@include PlainText;
&::before {
content: " | ";
}
color: #aaabaf;
}
.changes {
2020-05-27 14:06:48 +00:00
@include PlainText;
2020-05-23 13:04:55 +00:00
@include S(padding-left, 20px);
strong {
2020-05-27 13:03:36 +00:00
color: #aaa;
text-transform: uppercase;
@include S(padding, 1px, 2px);
@include S(margin-right, 3px);
}
2020-05-23 13:04:55 +00:00
}
}
}