diff --git a/public/css/NewAdminCSS.css b/public/css/NewAdminCSS.css
index 8cbd0cc..60e71dd 100644
--- a/public/css/NewAdminCSS.css
+++ b/public/css/NewAdminCSS.css
@@ -180,7 +180,10 @@ h6 {
margin: 10px;
}
.NewPanel.AdminPanel form div {
- display: flex;
+ display: -webkit-box;
+display: -webkit-flex;
+display: -ms-flexbox;
+display: flex;
justify-content: center;
}
.NewPanel .SearchCloseBtn{
@@ -239,6 +242,9 @@ h6 {
background-color: #555;
border-radius: 5px;
margin: 62px 25px 0 0;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
display: flex;
align-items: center;
align-content: center;
@@ -256,7 +262,10 @@ h6 {
width: 100%;
height: 100%;
position: relative;
- display: flex;
+ display: -webkit-box;
+display: -webkit-flex;
+display: -ms-flexbox;
+display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
@@ -305,7 +314,10 @@ h6 {
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
- display: flex;
+ display: -webkit-box;
+display: -webkit-flex;
+display: -ms-flexbox;
+display: flex;
flex-direction: row-reverse;
}
.NewPanel .HomeBtn {
diff --git a/public/css/app.css b/public/css/app.css
index f728614..d2c84f9 100644
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -92,11 +92,13 @@
}
#alert {
+ background: #de2323;
background: linear-gradient(#f07575 10%, #de2323 100%);
color: #fff;
}
#success {
+ background: #02b757;
background: linear-gradient(#a3e2bd 10%, #02b757 100%);
color: #fff;
}
@@ -197,7 +199,10 @@
}
.PageTitleBar {
- display: inline-flex;
+ display: -webkit-box;
+display: -webkit-flex;
+display: -ms-flexbox;
+display: flex;
width: 100%;
align-items: center;
align-content: center;
@@ -273,6 +278,7 @@ div.mySubmenuFixed {
div.mySubmenuFixed {
top: 36px;
+ background: #363636;
background: linear-gradient(#000 10%, #191919 100%);
height: 25px;
}
@@ -531,9 +537,12 @@ iframe {
.ProfileContainerBox {
border-radius: 1px;
text-align: left;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
width: 100%;
vertical-align: top;
- display: inline-flex;
border: 1px solid #000000;
overflow-y: hidden;
overflow-x: hidden;
@@ -547,7 +556,10 @@ iframe {
width: 100%;
min-width: max-content;
vertical-align: top;
- display: inline-flex;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
border: 1px solid #000000;
border-width: 1px;
margin-bottom: 5px;
diff --git a/public/css/appdark.css b/public/css/appdark.css
index 8d02d81..2870e34 100644
--- a/public/css/appdark.css
+++ b/public/css/appdark.css
@@ -1,8 +1,10 @@
#alert {
+ background: #6a0f0f;
background: linear-gradient(#ef3232 10%, #6a0f0f 100%);
}
#success {
+ background: #01582a;
background: linear-gradient(#00c953 10%, #01582a 100%);
}
@@ -92,12 +94,12 @@ body {
#footer a,
#footer_signup p,
#footer_signup a {
- color: rgb(167 167 167);
+ color: rgb(167, 167, 167);
}
a,
#navbarusername {
- color: rgb(215 215 215);
+ color: rgb(215, 215, 215);
}
.logoutframe {
@@ -127,10 +129,12 @@ input {
}
.tab_selected {
+ background: #01639c;
background: linear-gradient(180deg, #00a2ff 0%, #01639c 100%)
}
.tab {
+ background: #4b4b4b;
color: rgb(255, 255, 255) !important;
background: linear-gradient(180deg, #4b4b4b 0%, rgb(36, 36, 36) 100%);
}
diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php
index 7922db9..d245fb9 100644
--- a/resources/views/home.blade.php
+++ b/resources/views/home.blade.php
@@ -18,7 +18,7 @@