Fix: update static styles
This commit is contained in:
parent
2c8d35a908
commit
2e2795adee
|
|
@ -42,7 +42,7 @@ html {
|
||||||
-o-tab-size: 4;
|
-o-tab-size: 4;
|
||||||
tab-size: 4;
|
tab-size: 4;
|
||||||
/* 3 */
|
/* 3 */
|
||||||
font-family: UncutSans_Regular;
|
font-family: UncutSans;
|
||||||
/* 4 */
|
/* 4 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2668,6 +2668,14 @@ body[dir="rtl"] .checkbox:checked,
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-\[28px\] {
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h-\[16px\] {
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.h-\[68px\] {
|
.h-\[68px\] {
|
||||||
height: 68px;
|
height: 68px;
|
||||||
}
|
}
|
||||||
|
|
@ -2724,6 +2732,14 @@ body[dir="rtl"] .checkbox:checked,
|
||||||
width: 40px;
|
width: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.w-\[28px\] {
|
||||||
|
width: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w-\[16px\] {
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.w-fit {
|
.w-fit {
|
||||||
width: -moz-fit-content;
|
width: -moz-fit-content;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
|
|
@ -3142,14 +3158,6 @@ body[dir="rtl"] .checkbox:checked,
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.font-bold {
|
|
||||||
font-family: UncutSans_Bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font-semiBold {
|
|
||||||
font-family: UncutSans_Medium;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font-mono {
|
.font-mono {
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
}
|
}
|
||||||
|
|
@ -3198,6 +3206,10 @@ body[dir="rtl"] .checkbox:checked,
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.font-medium {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
.font-normal {
|
.font-normal {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
@ -3356,55 +3368,54 @@ body[dir="rtl"] .checkbox:checked,
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'UncutSans_Regular';
|
font-family: 'UncutSans';
|
||||||
|
|
||||||
src: url('/fonts/uncut-sans-regular-webfont.woff2') format('woff2'),
|
src: url('/fonts/uncut-sans-regular-webfont.woff2') format('woff2'),
|
||||||
url('/fonts/uncut-sans-regular-webfont.woff') format('woff');
|
url('/fonts/uncut-sans-regular-webfont.woff') format('woff');
|
||||||
|
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
|
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'UncutSans_Medium';
|
font-family: 'UncutSans';
|
||||||
|
|
||||||
src: url('/fonts/uncut-sans-medium-webfont.woff2') format('woff2'),
|
src: url('/fonts/uncut-sans-medium-webfont.woff2') format('woff2'),
|
||||||
url('/fonts/uncut-sans-medium-webfont.woff') format('woff');
|
url('/fonts/uncut-sans-medium-webfont.woff') format('woff');
|
||||||
|
|
||||||
font-weight: normal;
|
font-weight: 500;
|
||||||
|
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'UncutSans_Bold';
|
font-family: 'UncutSans';
|
||||||
|
|
||||||
src: url('/fonts/uncut-sans-bold-webfont.woff2') format('woff2'),
|
src: url('/fonts/uncut-sans-bold-webfont.woff2') format('woff2'),
|
||||||
url('/fonts/uncut-sans-bold-webfont.woff') format('woff');
|
url('/fonts/uncut-sans-bold-webfont.woff') format('woff');
|
||||||
|
|
||||||
font-weight: normal;
|
font-weight: 700;
|
||||||
|
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3 {
|
h1, h2, h3 {
|
||||||
font-family: UncutSans_Bold;
|
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4, h5, h6 {
|
h4, h5, h6 {
|
||||||
font-family: UncutSans_Medium;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, p, li, a, span, input {
|
body, input {
|
||||||
font-family: UncutSans_Regular;
|
font-family: UncutSans;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Button default styles */
|
/* Button default styles */
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
font-family: UncutSans_Medium;
|
font-weight: 500;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
min-height: 0px;
|
min-height: 0px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue