2022-04-01 22:55:27 -07:00
|
|
|
.header .title {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
2022-04-01 22:55:27 -07:00
|
|
|
flex-direction: row;
|
2022-03-24 19:32:24 -07:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-20 20:45:37 -07:00
|
|
|
}
|
|
|
|
|
2022-04-01 22:55:27 -07:00
|
|
|
.header .title .badges {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
2022-04-01 22:55:27 -07:00
|
|
|
gap: var(--gap-half);
|
2022-03-12 11:53:55 -08:00
|
|
|
}
|
|
|
|
|
2022-03-25 14:31:10 -07:00
|
|
|
.header .title h3 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-04-01 22:55:27 -07:00
|
|
|
display: inline-block;
|
2022-03-24 19:32:24 -07:00
|
|
|
}
|
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .buttons {
|
|
|
|
display: flex;
|
2022-04-01 22:55:27 -07:00
|
|
|
justify-content: flex-end;
|
2022-04-03 13:09:04 -07:00
|
|
|
margin-bottom: var(--gap);
|
2022-03-25 13:01:46 -07:00
|
|
|
}
|
|
|
|
|
2022-04-14 23:27:38 +02:00
|
|
|
.controls {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
@media screen and (max-width: 900px) {
|
2022-03-24 19:32:24 -07:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
2022-04-01 22:55:27 -07:00
|
|
|
gap: var(--gap);
|
2022-03-24 19:32:24 -07:00
|
|
|
}
|
2022-03-25 13:01:46 -07:00
|
|
|
}
|
2022-03-24 19:32:24 -07:00
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
.header .title {
|
2022-03-24 19:32:24 -07:00
|
|
|
flex-direction: column;
|
2022-04-01 22:55:27 -07:00
|
|
|
gap: var(--gap-half);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .title .badges {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2022-03-24 19:32:24 -07:00
|
|
|
}
|
2022-03-20 20:45:37 -07:00
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .title .badges > * {
|
2022-04-01 22:55:27 -07:00
|
|
|
width: min-content;
|
2022-03-25 13:01:46 -07:00
|
|
|
}
|
|
|
|
|
2022-04-01 22:55:27 -07:00
|
|
|
.header .buttons {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
2022-04-01 22:55:27 -07:00
|
|
|
justify-content: center;
|
2022-03-24 19:32:24 -07:00
|
|
|
}
|
2022-03-20 20:45:37 -07:00
|
|
|
}
|