Subversion Repositories cheapmusic

Rev

Rev 9 | Rev 20 | Go to most recent revision | Details | Compare with Previous | 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
/* Override Progress Bar Transition Time */
13
.progress-bar {
14
    transition: width 0.1s ease !important;
15
}
16
 
17 - 17
/* Three additional bigger font sizes */
3 - 18
.display-5 {
19
  font-size: 2.5rem;
20
  font-weight: 300;
21
  line-height: 1.2;
22
}
23
.display-6 {
24
  font-size: 1.5rem;
25
  font-weight: 300;
26
  line-height: 1.2;
5 - 27
}
28
 
17 - 29
.display-7 {
30
  font-size: 1.25rem;
31
  font-weight: 300;
32
  line-height: 1.2;
33
}
34
 
5 - 35
/* responsive typography */
36
/* xs < 576 */
37
 @media screen and (max-width: 575px) {
6 - 38
    th, td, .display-7 { font-size: 0.8em; }
5 - 39
    .display-4 {font-size: 1.5rem;}
40
    .display-5 {font-size: 1.0rem;}
41
    .display-6 {font-size: 1.0rem;}
17 - 42
    .searchTerm-width {width:15em!important;}
5 - 43
}
17 - 44
/* sm > 575 */
45
 @media screen and (min-width: 575px) {
6 - 46
    th, td, .display-7 { font-size: 0.9em; }
5 - 47
    .display-4 {font-size: 2.0rem;}
48
    .display-5 {font-size: 1.4rem;}
49
    .display-6 {font-size: 1.0rem;}
17 - 50
    .searchTerm-width {width:20em!important;}
5 - 51
}
17 - 52
/* md > 767 */
5 - 53
 @media screen and (min-width: 768px) {
6 - 54
    th, td, .display-7 { font-size: 1em; }
5 - 55
    .display-4 {font-size: 2.5rem;}
56
    .display-5 {font-size: 1.7rem;}
57
    .display-6 {font-size: 1.20rem;}
17 - 58
    .searchTerm-width {width:25em!important;}
5 - 59
}
17 - 60
/* lg > 991 */
5 - 61
 @media screen and (min-width: 992px) {
6 - 62
    th, td, .display-7 { font-size: 1.1em; }
5 - 63
    .display-4 {font-size: 3.0rem;}
64
    .display-5 {font-size: 2.1rem;}
65
    .display-6 {font-size: 1.35rem;}
17 - 66
    .searchTerm-width {width:30em!important;}
5 - 67
}
17 - 68
/* xl > 1199 */
5 - 69
 @media screen and (min-width: 1200px) {
17 - 70
    th, td, .display-7 { font-size: 1.25em; }
5 - 71
    .display-4 {font-size: 3.5rem;}
72
    .display-5 {font-size: 2.5rem;}
73
    .display-6 {font-size: 1.5rem;}
17 - 74
    .searchTerm-width {width:35em!important;}
5 - 75
}
17 - 76
 
77
/* Hide on larger and smaller screens */
78
@media screen and (max-width: 1199px) {
79
    .hide-medium { display: none !important; }
80
}
81
 
82
/* Hide on medium and smaller screens */
83
@media screen and (max-width: 991px) {
84
    .hide-medium { display: none !important; }
85
}
86
 
87
/* Hide on small and extra-small screens */
88
@media screen and (max-width: 767px) {
89
    .hide-small { display: none !important; }
90
}
91
 
92
/* Hide on extra-small screens */
93
@media screen and (max-width: 575px) {
94
    .hide-extra-small { display: none !important; }
95
}