Subversion Repositories cheapmusic

Rev

Rev 6 | Rev 17 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
    background-color: #f2f2f2;
    padding: 25px;
}

/* Hide on small and extra-small screens */
@media screen and (max-width: 768px) {
    .hide-small { display: none !important; }
}

/* Hide on extra-small screens */
@media screen and (max-width: 576px) {
    .hide-extra-small { display: none !important; }
}

/* Override Progress Bar Transition Time */
.progress-bar {
    transition: width 0.1s ease !important;
}

/* Add opacity */
.opacity-5 {
    opacity: 0.5;
}

/* Two additional bigger font sizes */
.display-5 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-6 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* responsive typography */
/* xs < 576 */
 @media screen and (max-width: 575px) {
    th, td, .display-7 { font-size: 0.8em; }
    .display-4 {font-size: 1.5rem;}
    .display-5 {font-size: 1.0rem;}
    .display-6 {font-size: 1.0rem;}
}
/* sm < 768 */
 @media screen and (max-width: 767px) {
    th, td, .display-7 { font-size: 0.9em; }
    .display-4 {font-size: 2.0rem;}
    .display-5 {font-size: 1.4rem;}
    .display-6 {font-size: 1.0rem;}
}
/* md */
 @media screen and (min-width: 768px) {
    th, td, .display-7 { font-size: 1em; }
    .display-4 {font-size: 2.5rem;}
    .display-5 {font-size: 1.7rem;}
    .display-6 {font-size: 1.20rem;}
}
/* lg */
 @media screen and (min-width: 992px) {
    th, td, .display-7 { font-size: 1.1em; }
    .display-4 {font-size: 3.0rem;}
    .display-5 {font-size: 2.1rem;}
    .display-6 {font-size: 1.35rem;}
}
/* xl */
 @media screen and (min-width: 1200px) {
    th, td, .display-7 { font-size: 1.2em; }
    .display-4 {font-size: 3.5rem;}
    .display-5 {font-size: 2.5rem;}
    .display-6 {font-size: 1.5rem;}
}