Subversion Repositories cheapmusic

Rev

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