Subversion Repositories cheapmusic

Rev

Rev 20 | Rev 43 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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