Skip to content
Snippets Groups Projects
Commit 3a255917 authored by Rachel Gaubil's avatar Rachel Gaubil
Browse files

[fix] adapt current title disposition to screen size (closes #57)

parent 85283e27
No related branches found
No related tags found
1 merge request!15Current titles
......@@ -189,6 +189,33 @@ mark {
****************/
.curr-title {
float: right;
font-size: 0.9rem;
text-align: right;
}
@media (max-width: 576px) {
.curr-title {
}
}
@media (min-width: 577px) and (max-width: 1099px) {
.curr-title {
width: 30%;
}
}
@media (min-width: 1100px) and (max-width: 1349px) {
.curr-title {
width: 40%;
}
}
@media (min-width: 1350px) and (max-width: 1649px) {
.curr-title {
width: 50%;
}
}
@media (min-width: 1650px) {
.curr-title {
/* width: 100%; */
}
}
/****************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment