Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 - 1
/* Remove the navbar's default margin-bottom and rounded borders */
2
.navbar {
3
    margin-bottom: 0;
4
    border-radius: 0;
5
}
6
/* Add a gray background color and some padding to the footer */
7
footer {
8
    background-color: #f2f2f2;
9
    padding: 25px;
10
}
11
 
12
/* Hide on small and medium screens visible/invisible */
13
@media screen and (max-width: 768px) {
14
    .hide-small { display: none !important; }
15
}
16
 
17
/* Override Progress Bar Transition Time */
18
.progress-bar {
19
    transition: width 0.1s ease !important;
20
}
21
 
22
/* Add opacity */
23
.opacity-5 {
24
    opacity: 0.5;
25
}