Subversion Repositories cheapmusic

Rev

Rev 43 | Rev 52 | 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
 
47 - 52
/* Images */
53
.user-img {max-height:45px;}
54
.wishlist-img {max-height:3em;}
55
 
56
/* Buttons */
57
.btn-search {font-size:25px;}
58
.btn-youtube {color:red;font-size:32px;vertical-align: middle;}
59
.btn-dismiss {font-size:24px;}
60
.btn-shop {font-size:20px;}
61
.btn-wishlist {font-size:1.5em;}
62
.btn-wishlist-delete {style=color:red;}
63
 
64
/* Icons */
65
.category-icon {font-size:32px;text-shadow:2px 2px 4px #000000;}
66
.category-icon-silver {color:silver;}
67
 
68
/* Cursor Pointer */
69
.cursor-pointer {cursor:pointer;}
70
 
5 - 71
/* responsive typography */
72
/* xs < 576 */
73
 @media screen and (max-width: 575px) {
6 - 74
    th, td, .display-7 { font-size: 0.8em; }
5 - 75
    .display-4 {font-size: 1.5rem;}
76
    .display-5 {font-size: 1.0rem;}
77
    .display-6 {font-size: 1.0rem;}
17 - 78
    .searchTerm-width {width:15em!important;}
5 - 79
}
17 - 80
/* sm > 575 */
81
 @media screen and (min-width: 575px) {
6 - 82
    th, td, .display-7 { font-size: 0.9em; }
5 - 83
    .display-4 {font-size: 2.0rem;}
84
    .display-5 {font-size: 1.4rem;}
85
    .display-6 {font-size: 1.0rem;}
17 - 86
    .searchTerm-width {width:20em!important;}
5 - 87
}
17 - 88
/* md > 767 */
5 - 89
 @media screen and (min-width: 768px) {
6 - 90
    th, td, .display-7 { font-size: 1em; }
5 - 91
    .display-4 {font-size: 2.5rem;}
92
    .display-5 {font-size: 1.7rem;}
93
    .display-6 {font-size: 1.20rem;}
17 - 94
    .searchTerm-width {width:25em!important;}
5 - 95
}
17 - 96
/* lg > 991 */
5 - 97
 @media screen and (min-width: 992px) {
6 - 98
    th, td, .display-7 { font-size: 1.1em; }
5 - 99
    .display-4 {font-size: 3.0rem;}
100
    .display-5 {font-size: 2.1rem;}
101
    .display-6 {font-size: 1.35rem;}
17 - 102
    .searchTerm-width {width:30em!important;}
5 - 103
}
17 - 104
/* xl > 1199 */
5 - 105
 @media screen and (min-width: 1200px) {
17 - 106
    th, td, .display-7 { font-size: 1.25em; }
5 - 107
    .display-4 {font-size: 3.5rem;}
108
    .display-5 {font-size: 2.5rem;}
109
    .display-6 {font-size: 1.5rem;}
17 - 110
    .searchTerm-width {width:35em!important;}
5 - 111
}
17 - 112
 
113
/* Hide on larger and smaller screens */
114
@media screen and (max-width: 1199px) {
43 - 115
    .hide-large { display: none !important; }
17 - 116
}
117
 
118
/* Hide on medium and smaller screens */
119
@media screen and (max-width: 991px) {
120
    .hide-medium { display: none !important; }
121
}
122
 
123
/* Hide on small and extra-small screens */
124
@media screen and (max-width: 767px) {
125
    .hide-small { display: none !important; }
126
}
127
 
128
/* Hide on extra-small screens */
129
@media screen and (max-width: 575px) {
130
    .hide-extra-small { display: none !important; }
131
}