]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - css/unrealircd-admin.css
Make a start on filtering for later
[irc/unrealircd/unrealircd-webpanel.git] / css / unrealircd-admin.css
index d5fa9515fc2e7993e04def55f37bf37315417b99..36aef73a37bf0e7e54838d1265b115c779140cb6 100644 (file)
@@ -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 */
+}