/*
    @author: Anthony Sabathier <anthony@sabathier.me>
    @brief: CSS file for webradio app - sabathier.me
*/

@import url(//fonts.googleapis.com/css?family=Roboto:100);

/* Default bg for body */
body {
    margin: 0px; padding: 0px;
    color: white;
    font-family: 'Roboto', sans-serif;
    background-color: #212121;
}

/* Remove unwanted link and button behavior */
a, button { cursor: pointer; background: none; border: none; margin: 0px; }
a:focus, button:focus { outline: none; }
button::-moz-focus-inner { border: 0; }

/* All images will be logos, preventing pixel lack */
img {
    display: block;
    max-height: 90px;
    max-width: 90px;
    width: auto;
    height: auto;
}

/* Header */
header {
    padding: 10px;
    background-color: #880e4f; 
    color: #ffffff;
}
header > h1 > img { 
    height: 35px; 
    margin-right: 15px; 
}

/*  Footer */
footer > a {
    color: white; 
    text-decoration: none;
}

/* Radio list countries */
h2 { margin-left: 10px; }
h2 > span { margin-right: 40px; } 

hr {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 60px;
    margin-right: 60px;
    height: 1px;
    background-color: #e91e63;
    border: none;
}

/* Controls */
radio-controls {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 90px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background-color: #880e4f;
    color: #fff;
    box-shadow: 0px -3px 3px grey;
}
/* Should match #radio-controls height*/
#radio-controls-placehoder { display: block; height: 90px; width: 100%; }

.volume-slider {
    transform: rotate(270deg);
    position: absolute;
    width: 120px;
}

.onair {
    margin: auto;
    padding: 5px;
    border: 5px solid grey;
    color: grey;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.onair-live {
    border: 5px solid red; 
    color: red; 
    text-shadow: 0 0 30px #FF0000; 
    box-shadow: inset 0 0 15px #FF0000, 0 0 25px #FF0000;
}

/* Radio choosing list rules */
.radio-list { margin: 0; padding: 0; cursor: pointer; }

li.radio-choice {
    display: inline-flex;
    width: 100%;
    height: 90px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: white;
    font-weight: bold;
}
li.radio-choice-even { background-color: #424242; }
li.radio-choice-odd { background-color: #212121; }
li.radio-choice > span { margin-left: 10px; }

/* Global Classes */
.center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.center-block {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}

.icon{ height: 64px; }

.hidden{ display: none; }

/*xs media (less than 768px)*/
@media (max-width: 767px) {
    .radio-control-item { height: 100%; width: 20%; }
    .logo-live { display: none; }
    .hide-xs { display: none; }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .radio-control-item { height: 100%; width: 100px; }
}

/* Medium devices (desktops, 992px and up) */
/*
@media (min-width: @screen-md-min) {}
*/
/* Large devices (large desktops, 1200px and up) */
/*
@media (min-width: @screen-lg-min) {}
*/
