mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
82 lines
1.4 KiB
SCSS
82 lines
1.4 KiB
SCSS
.categories-card {
|
|
margin: 0 auto;
|
|
margin-top: 3rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
line-height: 1.6rem;
|
|
|
|
.card-item {
|
|
font-size: .875rem;
|
|
text-align: left;
|
|
width: 45%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-top: 2rem;
|
|
min-height: 10rem;
|
|
padding: 0 2%;
|
|
position: relative;
|
|
|
|
.card-item-wrapper {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
.card-item-title {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin-top: 1rem;
|
|
margin-bottom: .75rem;
|
|
}
|
|
|
|
span {
|
|
float: right;
|
|
padding-right: 1rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.archive-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
margin: .25rem 0 .25rem 1.5rem;
|
|
}
|
|
|
|
.archive-item-link {
|
|
min-width: 10%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
|
|
&:hover {
|
|
color: $global-link-hover-color;
|
|
background-color: transparent;
|
|
}
|
|
|
|
[theme=dark] & {
|
|
color: $global-link-color-dark;
|
|
|
|
&:hover {
|
|
color: $global-link-hover-color-dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
.archive-item-date {
|
|
width: 4em;
|
|
text-align: right;
|
|
color: $global-font-secondary-color;
|
|
|
|
[theme=dark] & {
|
|
color: $global-font-secondary-color-dark;
|
|
}
|
|
}
|
|
|
|
.more-post {
|
|
text-align: right;
|
|
}
|