mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-08 19:29:17 +08:00

* Add bootstrap pagination Signed-off-by: Ivan Milošević <iva@blokovi.com> * Fix enviroment variable in readme Signed-off-by: Ivan Milošević <iva@blokovi.com> * Change style Remove pagination from channels and things lists if total less then limit Signed-off-by: Ivan Milošević <iva@blokovi.com> * Hide pagination when not needed on connection and message page Code refacotoring Signed-off-by: Ivan Milošević <iva@blokovi.com> * Remove debug module and local dev variable. Signed-off-by: Ivan Milošević <iva@blokovi.com> * Remove debug logging Signed-off-by: Ivan Milošević <iva@blokovi.com> * Add trailing slash note in README Signed-off-by: Ivan Milošević <iva@blokovi.com> * proto Signed-off-by: Ivan Milošević <iva@blokovi.com>
40 lines
930 B
CSS
40 lines
930 B
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: 'Roboto', 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;
|
|
}
|
|
|