73 lines
1005 B
SCSS
73 lines
1005 B
SCSS
@import 'variables';
|
|
@import '_mixins';
|
|
|
|
.typo-controls {
|
|
padding: 10px;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
border-radius: 10px;
|
|
|
|
p {
|
|
margin-bottom: 0;
|
|
}
|
|
select {
|
|
}
|
|
}
|
|
|
|
body {
|
|
#typography-page {
|
|
* {
|
|
font-family: $font3;
|
|
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui_btn_1 {
|
|
color: #ffffff;
|
|
background: #1d1d1e;
|
|
|
|
font-family: $font3;
|
|
font-weight: 700 !important;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
padding: 16px 36px;
|
|
border-radius: 5px;
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.ui_btn_2 {
|
|
color: #1d1d1e;
|
|
background: #fff246;
|
|
|
|
font-family: $font3;
|
|
font-weight: 700 !important;
|
|
font-size: 14px;
|
|
letter-spacing: 1px;
|
|
padding: 16px 36px;
|
|
border-radius: 5px;
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
|
|
&:hover {
|
|
color: #1d1d1e;
|
|
}
|
|
}
|