Subversion Repositories cheapmusic

Rev

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

Rev Author Line No. Line
1 - 1
/* Override Progress Bar Transition Time */
2
.progress-bar {
3
    transition: width 0.1s ease !important;
4
}
5
 
17 - 6
/* Three additional bigger font sizes */
3 - 7
.display-5 {
8
  font-size: 2.5rem;
9
  font-weight: 300;
10
  line-height: 1.2;
11
}
12
.display-6 {
13
  font-size: 1.5rem;
14
  font-weight: 300;
15
  line-height: 1.2;
5 - 16
}
17
 
17 - 18
.display-7 {
19
  font-size: 1.25rem;
20
  font-weight: 300;
21
  line-height: 1.2;
22
}
23
 
43 - 24
/* Pagination */
25
.paginateNav {padding:5px 5px;}
26
.paginateNav a {padding:3px 3px;color:black;}
27
.paginateNav a.current {font-weight:bold;text-decoration:underline;color:white;}
28
 
47 - 29
/* Images */
30
.user-img {max-height:45px;}
31
.wishlist-img {max-height:3em;}
32
 
33
/* Buttons */
34
.btn-search {font-size:25px;}
35
.btn-dismiss {font-size:24px;}
36
.btn-shop {font-size:20px;}
37
.btn-wishlist {font-size:1.5em;}
52 - 38
.btn-wishlist-delete {color:red;}
47 - 39
 
40
/* Icons */
41
.category-icon {font-size:32px;text-shadow:2px 2px 4px #000000;}
42
.category-icon-silver {color:silver;}
43
 
44
/* Cursor Pointer */
45
.cursor-pointer {cursor:pointer;}
46
 
61 - 47
/* Cards and their images */
48
.result-card { min-width:160px !important; max-width:160px !important; }
49
.result-image { max-height:160px !important; min-height:160px !important; }
50
.discogs-card { min-width:180px !importantr; max-width:180px !important; }
51
 
17 - 52
/* Hide on larger and smaller screens */
53
@media screen and (max-width: 1199px) {
43 - 54
    .hide-large { display: none !important; }
17 - 55
}
56
 
57
/* Hide on medium and smaller screens */
58
@media screen and (max-width: 991px) {
59
    .hide-medium { display: none !important; }
60
}
61
 
62
/* Hide on small and extra-small screens */
63
@media screen and (max-width: 767px) {
64
    .hide-small { display: none !important; }
65
}
66
 
67
/* Hide on extra-small screens */
61 - 68
/* Wider cards */
17 - 69
@media screen and (max-width: 575px) {
70
    .hide-extra-small { display: none !important; }
61 - 71
    .result-card { min-width:80% !important; max-width:80% !important; }
72
    .result-image { max-height:none !important; min-height:none !important; }
73
    .discogs-card { max-height:none !important; min-height:none !important; }
17 - 74
}