2022-03-12 14:53:55 -05:00
|
|
|
.header {
|
2022-03-24 22:32:24 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-20 23:45:37 -04:00
|
|
|
}
|
|
|
|
|
2022-03-25 16:01:46 -04:00
|
|
|
.header .title {
|
2022-03-24 22:32:24 -04:00
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-12 14:53:55 -05:00
|
|
|
}
|
|
|
|
|
2022-03-25 17:31:10 -04:00
|
|
|
.header .title h3 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-25 16:01:46 -04:00
|
|
|
.header .title .badges > * {
|
2022-03-24 22:32:24 -04:00
|
|
|
margin-left: var(--gap);
|
|
|
|
}
|
|
|
|
|
2022-03-25 16:01:46 -04:00
|
|
|
.header .buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 900px) {
|
2022-03-24 22:32:24 -04:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
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;
|
|
|
|
padding-bottom: var(--gap-double);
|
|
|
|
}
|
2022-03-20 23:45:37 -04:00
|
|
|
|
2022-03-25 16:01:46 -04:00
|
|
|
.header .title .badges > * {
|
2022-03-24 22:32:24 -04:00
|
|
|
margin-left: 0;
|
2022-03-25 16:01:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .title .badges {
|
2022-03-24 22:32:24 -04:00
|
|
|
display: flex;
|
2022-03-25 16:01:46 -04:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2022-03-25 17:31:10 -04:00
|
|
|
width: 100%;
|
2022-03-24 22:32:24 -04:00
|
|
|
}
|
2022-03-20 23:45:37 -04:00
|
|
|
}
|