|
Costco Food Court, is located at 325 W Thurrock Way, Grays, RM20 2ZH, UK Join the club & start saving! | Costco UK Shop at Costco.co.uk for best deals on all products and enjoy low warehouse prices on name-brand products online and instore. Delivery included.
/*
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
*/
.Services-wrapper {
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
padding: 0 10px;
max-width: 1400px;
margin: auto;
}
.text–medium {
font-family: “Open Sans”, sans-serif;
font-size: 16px;
line-height: 20px;
font-weight: 400;
color: #333333;
}
.cards {
grid-column: 1 / span 13;
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
grid-gap: 20px;
margin-bottom:2rem;
}
.card {
grid-column-end: span 4;
display: flex;
flex-direction: column;
/* background-color: #39393b;*/
/* transition: all 0.3s ease 0s;*/
}
.card a {
text-decoration: none;
}
.card a:hover {
text-decoration: underline;
cursor: pointer;
}
/*
.card:hover {
transform: translateY(-7px);
}
*/
.card__image-container {
width: 100%;
padding-top: 56.25%;
overflow: hidden;
position: relative;
}
.card__image-container img {
width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
}
.card__content {
/* padding: 20px;*/
}
.card__title {
margin-bottom: 20px;
font-size: 24px;
color: #005dab;
font-weight: 400;
line-height:24px;
}
.card__info {
display: flex;
align-self: end;
align-items: center;
}
.card__price {
margin-left: auto;
padding: 5px 20px;
background-color: #303032;
border-radius: 20px;
}
@media only screen and (max-width: 1000px) {
.card {
grid-column: span 6;
}
}
@media only screen and (max-width: 700px) {
main {
grid-gap: 20px;
}
.card {
grid-column: span 12;
}
}
|
Leave A Comment