X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/f41baac84976bab1d52496138dace5a35b749743..e0c259fc7c93c77aa87d52f32a8c0ec7071843c2:/css/unrealircd-admin.css diff --git a/css/unrealircd-admin.css b/css/unrealircd-admin.css index d5fa951..36aef73 100644 --- a/css/unrealircd-admin.css +++ b/css/unrealircd-admin.css @@ -104,10 +104,9 @@ footer { } - body { padding-top: 45px; - background-image: url("../img/linen.png"); + background-image: url("../img/background.jpg"); display: flex; flex-direction: column; } @@ -197,10 +196,47 @@ body { .table-striped>tbody>tr:nth-child(even)>td, .table-striped>tbody>tr:nth-child(even)>th { - background-color: #c9c9c949; + background-color: #a5a5a549; } .table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th { background-color: #ffffff; } - \ No newline at end of file + + /* Small screens (max-width: 576px) */ +@media (max-width: 576px) { + /* Change the font size for all headings */ + h1, h2, h3, h4, h5, h6 { + font-size: 18px; + } + + /* Hide the sidebar */ + .sidebar { + display: none; + } + + /* Make the main content take up the full width of the screen */ + .main-content { + width: 100%; + } +} + +/* Medium screens (min-width: 577px) and (max-width: 768px) */ +@media (min-width: 577px) and (max-width: 768px) { + /* Change the font size for all headings */ + +} + +/* Large screens (min-width: 769px) */ +@media (min-width: 769px) { + /* CSS rules for large screens go here */ +} +/* Portrait screens (max-width: 576px) */ +@media (max-width: 576px) and (max-height: 812px) { + /* CSS rules for portrait screens go here */ +} + +/* Landscape screens (min-width: 577px) and (max-height: 812px) */ +@media (min-width: 577px) and (max-height: 812px) { + /* CSS rules for landscape screens go here */ +}