You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/scss/Tile.scss

85 lines
1.2 KiB

.WM-Tile {
width: 100%;
padding: 10px;
border: 1px solid #eeeeee;
transition: 0.4s;
border-radius: 5px;
margin-bottom: 10px;
}
.WM-Tile:hover {
border: 5px solid #000;
}
.WM-Tile.Shadowed {
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .5);
border-radius: 5px;
}
.WM-Tile .Content {
background-color: #fff;
height: 100%;
}
.WM-Tile .Image {
width: 100%;
}
.Content {
padding: 10px;
margin: 0px;
position: relative;
}
.Content .Info {
text-align: right;
margin-right: 30px;
cursor: pointer;
}
.Content .Check {
position: absolute;
right: 0px;
width: 40px;
}
.Content .Number {
position: absolute;
right: -14px;
bottom: -16px;
line-height: 40px;
width: 40px;
font-size: 40px;
color: rgb(224, 224, 224);
}
.Info .TitleEn {
font-size: 13px;
}
.Info .TitleFa {
font-size: 16px;
}
//-----------------------------------Price
.Content .Price {
text-align: left;
}
.Content .Price .Unit {
font-size: 12px;
}
.Price .NewPrice {
font-size: 24px;
}
.Price .OldPrice {
font-size: 14px;
margin-left: 20px;
text-decoration: line-through;
text-decoration-color: #ee3552;
color: #ee3552;
margin-top: -5px;
}