Subversion Repositories cheapmusic

Rev

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