/* A data repository for displaying data gathered from oireachtas API.
   Copyright (C) <2019>  <John O' Sullivan

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses.  */


html, body {
    font-family: 'Roboto', 'helvetica' sans-serif;
    padding: 0;
    margin: 0;
    background-color: rgb(240, 240, 240);
}

header {
    padding: 10px;
    font-size: 2rem;
}

/* Nav */
.nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5);
    transition: all 0.5s;
}

.logo {
    height: 50px;
}

/* Content */
.container {
    position: relative;
    background-color: #f8f9fa;
    padding-bottom: 65px;
}

.container-content {
    margin: auto;
    padding: 1em;
}

#data {
    padding: 10px;
    padding-bottom: 15px;
}
/* Breadcrumbs */
.crumb {
    font-size: 1.5rem;
    color: #007bff !important;
}

/* Oireachtas Page Details */
.bigger-text {
    font-size : 1.4rem;
}

.inner {
    min-height: 400px;
    padding: 10px;
    transition: all 1s;
}

.inner:hover {
    background-color: rgb(255, 211, 154);
}

.box {
    height: 200px;
    overflow: hidden !important;
}

.house-image {
    width: 420px;
}

.part {
    margin-bottom: 10px;
}

.house {
    margin-bottom: 15px;
}

/* Pagination */
#pagination {
    padding-bottom: 5px;
}

.pagination {
    font-size: 1.2rem;
}

.paging-link {
    color: #007bff !important;
}

/* Images */
.member-img {
    width: 100%;
}

.member-thumbnail-box {
    height:30px;
    width:30px;
    overflow: hidden;
}

.member-thumbnail {
    width:30px;
}

/* Links */
a{
    cursor: pointer;
}

.primary {
    background-color: antiquewhite;
}

.dail{
    background-color: rgb(251, 242, 237);
}

.seanad {
    background-color: rgb(240, 251, 255);
}

.dis {
    color: grey !important;
}

footer {
    position: fixed;
    bottom: 0;
    width:100%;
    padding: 10px;
}

.footer-logo {
    height: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.footer-link {
    text-align: center;
}

#footer-link {
    text-align: center;
}

/* Neater member list on mobile */
@media (max-width: 576px) {

.house-name {
    display: none;
}

.member-name {
    margin: auto;
}

}