This commit is contained in:
parent
4c34b3c398
commit
e7da4d77b5
10 changed files with 197 additions and 57 deletions
|
|
@ -129,8 +129,7 @@ button:disabled{
|
|||
}
|
||||
}
|
||||
|
||||
.btn--bold,
|
||||
.btn--bold-inline{
|
||||
.btn--bold{
|
||||
display: block;
|
||||
height: calc(var(--h-block)*1);
|
||||
border: var(--border);
|
||||
|
|
@ -188,12 +187,98 @@ button:disabled{
|
|||
|
||||
}
|
||||
|
||||
.btn--bold-inline{
|
||||
.btn--see-more{
|
||||
|
||||
margin-top: calc(var(--spacing)*1);
|
||||
margin-inline: auto;
|
||||
|
||||
display: block;
|
||||
height: calc(var(--h-block)*1);
|
||||
border: 1px solid var(--color-txt-light);
|
||||
border-radius: var(--radius-btn);
|
||||
font-size: var(--fs-small);
|
||||
|
||||
line-height: 1;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
|
||||
color: var(--color-txt-light);
|
||||
background-color: var(--color-bg);
|
||||
// svg{
|
||||
// fill: var(--color-txt);
|
||||
// size: 13px!important;
|
||||
// }
|
||||
|
||||
|
||||
@include icon(12px);
|
||||
.icon{
|
||||
position: relative;
|
||||
top: -2px;
|
||||
|
||||
}
|
||||
svg{
|
||||
fill: var(--color-txt-light);
|
||||
}
|
||||
a{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1ch;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0 1.25ch;
|
||||
padding-top: 4px;
|
||||
font-size: var(--fs-small);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
&:hover{
|
||||
background-color: var(--grey-950);
|
||||
color: var(--grey-100);
|
||||
border-color: var(--grey-100);
|
||||
a{
|
||||
background-color: var(--grey-950);
|
||||
color: var(--grey-100);
|
||||
}
|
||||
svg{ fill: var(--grey-100); }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
.btn--home{
|
||||
|
||||
display: block;
|
||||
height: calc(var(--h-block)*1);
|
||||
border: var(--border);
|
||||
border-radius: var(--radius-btn);
|
||||
font-size: var(--fs-small);
|
||||
|
||||
line-height: 1;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
|
||||
background-color: var(--color-bg);
|
||||
font-weight: 500;
|
||||
|
||||
|
||||
@include icon(12px);
|
||||
.icon{
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
a{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1ch;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0 1.25ch;
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
&:hover{
|
||||
background-color: var(--grey-950);
|
||||
color: var(--grey-100);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue