mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00

* Improve UI style Signed-off-by: drasko <drasko.draskovic@gmail.com> * Remove unused font Signed-off-by: drasko <drasko.draskovic@gmail.com>
70 lines
1.4 KiB
CSS
70 lines
1.4 KiB
CSS
/* Copyright (c) 2019
|
|
Mainflux
|
|
SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
|
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,800');
|
|
|
|
.btn-primary {
|
|
color: #fff;
|
|
background-color: #113f67;
|
|
border-color: #113f67;
|
|
}
|
|
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
|
|
color: #fff;
|
|
background-color: #408ab4;
|
|
border-color: #408ab4;
|
|
}
|
|
|
|
body {
|
|
background-color: #f3f3f4 !important;
|
|
font-family: 'Montserrat', sans-serif !important;
|
|
}
|
|
.title{
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-weight: 800;
|
|
transform: scaleY(0.95);
|
|
text-align: center;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.page-link{
|
|
color: #113f67;
|
|
}
|
|
|
|
.page-item.active .page-link {
|
|
background-color: #113f67;
|
|
border-color: #113f67;
|
|
}
|
|
|
|
ul.nav a:hover {
|
|
color: #fff !important;
|
|
background-color: #408ab4 !important;
|
|
cursor: pointer;
|
|
transition: color .15s ease-in-out,background-color .15s ease-in-out;
|
|
}
|
|
|
|
.nav-pills .nav-link.active{
|
|
background-color: #408ab4 !important;
|
|
}
|
|
|
|
.nav li a i {
|
|
margin-right: 10px;
|
|
font-size: 12px;
|
|
width: 25px;
|
|
height: 25px;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
border-radius: 4px;
|
|
background:#154f82;
|
|
|
|
}
|
|
|
|
.card {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.table thead th {
|
|
border-top: none;
|
|
} |