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