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;
3 - 25
}
26
 
27
/* Two additional bigger font sizes */
28
.display-5 {
29
  font-size: 2.5rem;
30
  font-weight: 300;
31
  line-height: 1.2;
32
}
33
.display-6 {
34
  font-size: 1.5rem;
35
  font-weight: 300;
36
  line-height: 1.2;
1 - 37
}