added address view, started implementation of dark theme

This commit is contained in:
arnaucode
2017-08-28 22:49:17 +02:00
parent d8d49e4e4a
commit 139040269f
17 changed files with 205 additions and 35 deletions

View File

@@ -0,0 +1,29 @@
/* bootstrap overwrite dark */
body {
background: #424242!important;
}
.panel-heading {
border-radius: 0px!important;
}
.panel-title a {
background: rgba(0,0,0,0)!important;
text-decoration: none;
}
.panel-body {
background: #212121;
color: #ffffff;
}
.list-group-item {
background: rgba(0,0,0,0)!important;
}
.list-group-item:hover {
background: rgba(255, 255, 255, 0.2)!important;
}
.list-group-item p, a{
color: #ffffff!important;
}
.table-hover tbody tr:hover {
background-color: rgba(245, 245, 245, 0.2)!important;
}

View File

@@ -463,6 +463,11 @@
color: #ffffff!important;
}
.c_black{
background: #000000!important;
color: #ffffff!important;
}
/* blue grey */

View File

@@ -30,15 +30,23 @@
/* sidebar */
.o_sidebar a{
.o_sidebar a {
color: white;
padding: 10px;
}
.o_sidebar a:hover{
.o_sidebar a:hover {
background: #9E9E9E!important;
color: white;
}
.o_sidebarIcon{
.o_sidebarIcon {
font-size: 180%;
margin-right: 10px;
}
}
.o_textRoundProgress {
margin-left: 30%;
margin-top: -15%;
}