Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dashboard UI Updated #4

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions css/darkdashboard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*#343a40 black*/
/*#f8f9fa white*/
.modal-content,.navbar,body{
background: #343a40 !important;
}
.main-nav{
background: #2b3036 !important;
}
.main-nav img{
filter: invert(100%);
}
.main-nav li:hover > a,
nav.main-nav li.active > a {
filter:invert(45%) sepia(234%) saturate(7349%) hue-rotate(229deg) brightness(120%) contrast(205%);
}
.close{
color: #f8f9fa;
}
.close:hover{
color: #f8f9fa;
}
.addborderbottom {
border-bottom: 1px solid #7d7d7d;
}
.addborderright {
border-right: 1px solid #7d7d7d;
}
.nav-text,a,span,div,p{
color:#f8f9fa !important ;
}
.btn-outline-primary{
color:#f8f9fa;
border-color: #f8f9fa;
}
.select{
color: #0046ff !important;
}
.select[selected]{
color: #f8f9fa !important;
}
img[alt="delete"],img[alt="edit"],img[alt="undo"],img[alt="redo"],img[alt="darkmode"]{
filter:invert(100%);
}
.navbar-toggler{
filter: invert(100%);
}


34 changes: 34 additions & 0 deletions css/darkindex.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*#343a40 black*/
/*#f8f9fa white*/
.modal-content,.navbar,.main-nav,body{
background: #343a40 !important;
}
.bluecolor{
color: #007bff;
}
.close{
color: #f8f9fa;
}
.close:hover{
color: #f8f9fa;
}
a,div,p{
color:#f8f9fa !important ;
}
.btn-outline-primary{
color:#f8f9fa;
border-color: #f8f9fa;
}

.infosmall{
color: #b1afaf !important;
}
.subbannertext {
color: #b1afaf !important;
}
.navbar-toggler{
filter: invert(100%);
}
.addborderbottom {
border-bottom: 1px solid #7d7d7d;
}
168 changes: 168 additions & 0 deletions css/styledashboard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
body{
font-family:"Google Sans", sans-serif;
background: #f8f9fa;
}

.btn-primary{
background: #0046ff;
border-color: #0046ff;
}
.btn-primary:hover{
border-color: #0046ff;
background: #007bff;
}
.btn-outline-primary{
color: #0046ff;
border-color: #0046ff;
}
.btn-outline-primary:hover{
color: white;
border-color: #0046ff;
background: #0046ff;
}
.col-4{
padding: 10px;
}
canvas {
z-index: 10;
width: 280px;
max-width: 80%;
}

.btn {
border-radius: 50px;
}


.circular-icon {
border: 2px solid grey !important;
border-radius: 50px !important;
height: 50px;
width: 50px;
/*background: red;*/
}

.addborderbottom {
border-bottom: 1px solid #bdbdbd;
}
.addborderright {
border-right: 1px solid #bdbdbd;
}

.select-container {
display: flex;
border-radius: 4px;
overflow: hidden;
}

.select-container .select {
background-color: #f7f7f7;
/*padding:6px 12px;*/
margin: 2px;
border: 2px solid #909090;
/*border-radius: 50px;*/
font-size: 15px;
cursor: pointer;
transition: background-color 100ms ease;
}
.select-container .select:hover {
color:#0046ff;
transition: background-color 100ms ease;
}

.select-container .select:not(:last-child) {
/*border-right: 1px solid #cacaca;*/
}

.select-container .select[selected] {
color: white;
font-weight: bold;
background: #0066cc;
/*border-radius: 50px;*/

}

.frameselecttext {
position: absolute;
padding: 4px;
padding-left: 18px;
/*font-weight: bold;*/
font-size: 10px;
}
.frameselectimage {
height:80px;
/*padding: 4px;*/
}
.someicons {
height:60px;
padding: 15px;
/*filter: invert(38%) sepia(100%) saturate(7486%) hue-rotate(226deg) brightness(99%) contrast(112%); !*blue color for icons*!*/
border-radius: 10px;
}

.someiconsbackground {
display: inline-block;
height: 60px;
border-radius: 10px;
background: #e1e5f3;
}
.closeicon{
position: relative;
z-index: 2000;
cursor: pointer;
}
.switch {
position: relative;
display: inline-block;
width: 35px;
height: 18px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 10px;
width: 10px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}

input:checked + .slider {
background-color: #0046ff;
}

input:focus + .slider {
box-shadow: 0 0 1px #0046ff;
}

input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(18px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
Loading