]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - css/unrealircd-admin.css
Make the beginnings of a login page
[irc/unrealircd/unrealircd-webpanel.git] / css / unrealircd-admin.css
index 5aa44b65aa3b6e5d00b16e99ac73daf98b342ab9..5fb0647776e50be001e019c3932d0db2b13472f3 100644 (file)
 .unrealircd_overview {
-    font-family: arial, sans-serif;
-    border-collapse: collapse;
-    border-radius: 15px;
-    width: 25%;
+       font-family: arial, sans-serif;
+       border-collapse: collapse;
+       border-radius: 7px;
+       width: 25%;
+       box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 }
 
-td,
-th {
-    border: 1px solid #000;
-    text-align: left;
-    padding: 8px;
+.badge-pill {
+       box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 }
 
-tr:nth-child(even) {
-    background-color: #bec8d3;
+.curvy {
+       border-radius: 7px;
+       margin: 2px;
 }
 
-* {
-    box-sizing: border-box;
+.form-control {
+       height: 10px;
+       margin: 5px;
+}
+  
+.short-form-control {
+       width: 70%;
+}
+
+.nav-item {
+       margin-left: 2px;
+       margin-right: 2px;
+}
+.navbar-nav li> {
+       border-radius: 4px;
+}
+.navbar-nav li>a:hover,.navbar-nav li.active {
+       color: white;
+       background-color: #4B86EE;
+       border-radius: 4px;
+}
+.navbar-nav li>a:hover,.navbar-nav li>a:focus {
+       color: white;
+       background-color: #6ca0f8;
+       border-radius: 4px;
+}
+
+.align_right {
+       width: 10px;
+       text-align: right;
 }
 
-.row {
-    display: flex;
+.input_text {
+       border-radius: 7px;
 }
 
-.column {
-    flex: 50%;
-    padding: 5px;
+.filter-fields {
+       height: 30px;
+       width: 400px;
+       padding: 5px 5px;
+       margin: 8px 0;
+       border-radius: 7px;
 }
 
+
+.align_label {
+       width: 80px;
+       display: inline-block;
+       text-align: right;
+}
+
+
+
+
+*,
+*:before,
+*:after {
+       box-sizing: inherit;
+       /* enable the "border-box effect" everywhere */
+}
+body {
+    padding-bottom: 120px;
+}
+footer {
+       font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
+       position: absolute;
+       bottom: 0;
+       width: 100%;
+       height: 55px;
+  }
+
 .topnav {
-    background-color: #333;
-    overflow: hidden;
+       background-color: #333;
+       overflow: hidden;
+       font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
+
 }
 
 /* Style the links inside the navigation bar */
 .topnav a {
-    float: left;
-    color: #f2f2f2;
-    text-align: center;
-    padding: 14px 16px;
-    text-decoration: none;
-    font-size: 17px;
+       float: left;
+       color: #f2f2f2;
+       text-align: center;
+       padding: 14px 16px;
+       text-decoration: none;
+       font-size: 17px;
+}
+
+
+body {
+       padding-top: 45px;
+       background-image: url("../img/background.jpg");
+       display: flex;
+       flex-direction: column;
+}
+
+
+.alert-short {
+       width: 40%;     
 }
 
-/* Change the color of links on hover */
-.topnav a:hover {
-    background-color: #ddd;
-    color: black;
+/* The close button */
+.closebtn {
+       color: black;
+       font-weight: bold;
+       float: right;
+       font-size: 22px;
+       line-height: 20px;
+       cursor: pointer;
+       transition: 0.3s;
 }
 
-/* Add a color to the active/current link */
-.topnav a.active {
-    background-color: #4e50c2;
-    color: white;
+
+.checkbox-dropdown {
+       width: 200px;
+       border: 1px solid #aaa;
+       padding: 10px;
+       position: relative;
+       margin: 0 auto;
+       
+       user-select: first;
 }
 
+/* Display CSS arrow to the right of the dropdown text */
+.checkbox-dropdown:after {
+       content:'';
+       height: 0;
+       position: absolute;
+       width: 0;
+       border: 6px solid transparent;
+       border-top-color: #000;
+       top: 50%;
+       right: 10px;
+       margin-top: -3px;
+}
 
-[data-tab-content] {
-    display: none;
+/* Reverse the CSS arrow when the dropdown is active */
+.checkbox-dropdown.is-active:after {
+       border-bottom-color: #000;
+       border-top-color: #fff;
+       margin-top: -9px;
+}
+
+.checkbox-dropdown-list {
+       list-style: none;
+       margin: 0;
+       padding: 0;
+       position: absolute;
+       top: 100%; /* align the dropdown right below the dropdown text */
+       border: inherit;
+       border-top: none;
+       left: -1px; /* align the dropdown to the left */
+       right: -1px; /* align the dropdown to the right */
+       opacity: 0; /* hide the dropdown */
+   
+       transition: opacity 0.4s ease-in-out;
+       height: 100px;
+       overflow: scroll;
+       overflow-x: hidden;
+       pointer-events: none; /* avoid mouse click events inside the dropdown */
+}
+.is-active .checkbox-dropdown-list {
+       opacity: 1; /* display the dropdown */
+       pointer-events: auto; /* make sure that the user still can select checkboxes */
 }
 
-.active[data-tab-content] {
-    display: block;
+.checkbox-dropdown-list li label {
+       display: block;
+       border-bottom: 1px solid silver;
+       padding: 10px;
+   
+       transition: all 0.2s ease-out;
 }
 
-.tab.active {
-    background-color: #AAA;
+.checkbox-dropdown-list li label:hover {
+       background-color: #555;
+       color: white;
 }
 
-.tab:hover {
-    background-color: #AAA;
-}
\ No newline at end of file
+.table-striped>tbody>tr:nth-child(even)>td, 
+.table-striped>tbody>tr:nth-child(even)>th {
+   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