| 1 |
.addons-filter .subsubsub { |
| 2 |
float: none; |
| 3 |
} |
| 4 |
|
| 5 |
.addons-list { |
| 6 |
display: flex; |
| 7 |
flex-wrap: wrap; |
| 8 |
margin-top: 20px; |
| 9 |
justify-content: flex-start; |
| 10 |
} |
| 11 |
|
| 12 |
.addons-list .addon-card { |
| 13 |
position: relative; |
| 14 |
display: flex; |
| 15 |
flex-direction: column; |
| 16 |
width: 46%; |
| 17 |
background-color: #fff; |
| 18 |
border: 1px solid #e5e5e5; |
| 19 |
margin: 10px; |
| 20 |
padding: 20px; |
| 21 |
box-sizing: border-box; |
| 22 |
} |
| 23 |
|
| 24 |
.addons-list .addon-icon { |
| 25 |
display: flex; |
| 26 |
align-items: center; |
| 27 |
} |
| 28 |
|
| 29 |
.addons-list .addon-icon { |
| 30 |
padding: 0 15px; |
| 31 |
} |
| 32 |
|
| 33 |
.addons-list .addon-icon a { |
| 34 |
display: block; |
| 35 |
width: 80px; |
| 36 |
height: center; |
| 37 |
} |
| 38 |
|
| 39 |
.addons-list .addon-icon img { |
| 40 |
max-width: 100%; |
| 41 |
max-height: 100%; |
| 42 |
min-width: 100%; |
| 43 |
min-height: 100%; |
| 44 |
} |
| 45 |
|
| 46 |
.addons-list .addon-card .addon-head { |
| 47 |
display: flex; |
| 48 |
flex-grow: 1; |
| 49 |
} |
| 50 |
|
| 51 |
.addons-list .addon-card .addon-title a { |
| 52 |
color: inherit; |
| 53 |
text-decoration: none; |
| 54 |
} |
| 55 |
|
| 56 |
.addons-list .addon-card .addon-title a:hover, |
| 57 |
.addons-list .addon-card .addon-title a:active { |
| 58 |
color: #2271b1; |
| 59 |
text-decoration: underline; |
| 60 |
} |
| 61 |
|
| 62 |
.addons-list .addon-card .addon-description { |
| 63 |
margin-bottom: 20px; |
| 64 |
} |
| 65 |
|
| 66 |
.addons-list .addon-actions { |
| 67 |
display: flex; |
| 68 |
justify-content: flex-start; |
| 69 |
width: 100%; |
| 70 |
} |
| 71 |
|
| 72 |
.addons-list .addon-actions .hs-wrap { |
| 73 |
width: 110px; |
| 74 |
display: flex; |
| 75 |
justify-content: center; |
| 76 |
align-items: center; |
| 77 |
} |
| 78 |
|
| 79 |
.addons-list .addon-actions .addon-secondary-link { |
| 80 |
text-decoration: none; |
| 81 |
color: #3c434a; |
| 82 |
margin-right: 10px; |
| 83 |
} |
| 84 |
|
| 85 |
.addons-list .addon-actions .addon-secondary-link:hover span, |
| 86 |
.addons-list .addon-actions .addon-secondary-link:active span { |
| 87 |
color: #3c434a; |
| 88 |
} |
| 89 |
|
| 90 |
|
| 91 |
.addons-list .addon-actions .addon-secondary-link:hover, |
| 92 |
.addons-list .addon-actions .addon-secondary-link:active { |
| 93 |
color: #2271b1; |
| 94 |
} |
| 95 |
|
| 96 |
.addons-list .addon-actions .addon-secondary-actions { |
| 97 |
width: 110px; |
| 98 |
display: flex; |
| 99 |
justify-content: flex-start; |
| 100 |
align-items: center; |
| 101 |
} |
| 102 |
|
| 103 |
.addons-list .addon-actions .addon-secondary-link { |
| 104 |
display: flex; |
| 105 |
} |
| 106 |
|
| 107 |
.addons-list .addon-actions .addon-secondary-link span { |
| 108 |
margin-right: 5px; |
| 109 |
} |
| 110 |
|
| 111 |
.addons-list .addon-actions .addon-secondary-link img { |
| 112 |
width: 20px; |
| 113 |
height: auto; |
| 114 |
margin-right: 5px; |
| 115 |
} |
| 116 |
|
| 117 |
.addons-list .addon-card .addon-status { |
| 118 |
position: absolute; |
| 119 |
top: 10px; |
| 120 |
right: 10px; |
| 121 |
font-weight: bold; |
| 122 |
color: #fff; |
| 123 |
border-radius: 20px; |
| 124 |
padding: 5px 10px; |
| 125 |
} |
| 126 |
|
| 127 |
.addons-list .addon-card.addon-card.recommended .addon-status { |
| 128 |
background-color: #f05323; |
| 129 |
} |
| 130 |
|
| 131 |
.addons-list .addon-card.addon-card.active .addon-status { |
| 132 |
background-color: #00a32a; |
| 133 |
} |
| 134 |
|
| 135 |
@media screen and (min-width: 1450px) { |
| 136 |
.addons-list .addon-card { |
| 137 |
width: 31%; |
| 138 |
} |
| 139 |
} |
| 140 |
|
| 141 |
@media screen and (min-width: 769px) and (max-width: 1050px) { |
| 142 |
.addons-list .addon-card .addon-actions { |
| 143 |
flex-direction: column; |
| 144 |
align-items: center; |
| 145 |
} |
| 146 |
|
| 147 |
.addons-list .addon-card .addon-actions .hs-wrap { |
| 148 |
width: 100%; |
| 149 |
} |
| 150 |
|
| 151 |
.addons-list .addon-card .addon-actions .addon-secondary-actions { |
| 152 |
width: 100%; |
| 153 |
justify-content: center; |
| 154 |
margin-top: 20px; |
| 155 |
} |
| 156 |
} |
| 157 |
|
| 158 |
@media screen and (max-width: 768px) { |
| 159 |
.addons-list .addon-card { |
| 160 |
width: 100%; |
| 161 |
} |
| 162 |
} |
| 163 |
|
| 164 |
@media screen and (max-width: 460px) { |
| 165 |
.addons-list .addon-card .addon-actions { |
| 166 |
flex-direction: column; |
| 167 |
align-items: center; |
| 168 |
} |
| 169 |
|
| 170 |
.addons-list .addon-card .addon-actions .hs-wrap { |
| 171 |
width: 100%; |
| 172 |
} |
| 173 |
|
| 174 |
.addons-list .addon-card .addon-actions .addon-secondary-actions { |
| 175 |
width: 100%; |
| 176 |
justify-content: center; |
| 177 |
margin-top: 20px; |
| 178 |
} |
| 179 |
} |
| 180 |
|