personal-website/assets/style.mobile.css

30 lines
633 B
CSS
Raw Normal View History

2024-03-16 04:04:38 -05:00
@media screen and (max-width: 767px) {
2024-03-16 05:04:40 -05:00
body>div:not([id]) {
2024-03-27 13:33:35 -05:00
height: unset !important;
2024-03-16 04:04:38 -05:00
width: 100% !important;
2024-03-16 05:04:40 -05:00
border-bottom: 1px solid;
2024-03-16 04:04:38 -05:00
}
2024-03-16 05:13:18 -05:00
body>div>div#inner {
2024-03-27 13:33:35 -05:00
overflow-y: hidden !important;
height: auto !important;
padding: 1em !important;
2024-03-16 05:13:18 -05:00
}
2024-03-16 05:03:32 -05:00
body>#arrows {
display: flex !important;
width: 100% !important;
position: fixed;
bottom: 0;
right: 0;
}
body>#arrows>div {
width: 50%;
text-align: center;
background-color: black;
color: white;
cursor: pointer;
2024-03-16 04:04:38 -05:00
}
}