-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserStyles.css
More file actions
75 lines (62 loc) · 1.01 KB
/
userStyles.css
File metadata and controls
75 lines (62 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.thumbnail {
width: 30%;
padding-top: 5%;
background-color: #DDDDDD;
border-radius: 10px;
float: left;
margin: 5px;
position: relative;
}
.thumbnail_div {
text-align: center;
}
.thumbnail_img {
width: 80%;
height: auto;
height: 80%;
margin-left: 10%;
float: left;
}
.thumbnail_price {
width: 100%;
text-align: center;
font-size: 1.5em;
}
.thumbnail_name {
padding-top: 10%;
width: 100%;
text-align: center;
font-size: 1.5em;
}
.display_img {
max-height: 100%;
max-width: 100%;
}
.clickableRow {
-webkit-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.clickableRow:hover {
background-color: #BBBBBB;
cursor: pointer;
}
.tableTitle {
font-weight: bold;
margin-top: 20px;
margin-bottom: 0px;
padding-bottom: 0px;
text-align: center;
}
.displayTable {
text-align: center;
}
@media screen and (max-width: 550px){
.thumbnail {
width: 98%;
}
}
@media screen and (max-width: 992px){
.logo-img {
max-height: 20px !important;
}
}