Files
Site_Vologda/site/style/textFont.css
Frog-Lover-Antony e9d3f1b870 fonts!
2023-10-31 19:52:04 +03:00

43 lines
1.0 KiB
CSS

@font-face {
font-family: 'Beryozki';
src: url('/style/fonts/Beryozki.eot') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Beryozki';
src: url('/style/fonts/Beryozki.woff') format('woff'),
url('Beryozki.ttf') format('truetype'),
url('Beryozki.svg#Beryozki') format('svg');
font-weight: normal;
font-style: normal;
}
.normalText {
font-size: var(--textSize);
font-family: 'Sometype Mono', monospace;
color: rgb(0, 0, 0);
}
.titleText {
font-size: calc(var(--textSize) + (var(--textSize) * 0.3));
font-family: 'Sometype Mono', monospace;
text-align: left;
margin-left: 3vw;
color: rgb(0, 0, 0);
}
.miniText {
font-size: calc(var(--textSize) * 0.9);
font-family: 'Sometype Mono', monospace;
color: rgb(0, 0, 0);
}
:root {
--textSize: 1.2em;
}