Files
Site_Vologda/site/style/textFont.css
Петухова Ростислава c5b1b7125f Version 2
2023-10-31 19:39:28 +03:00

25 lines
556 B
CSS

.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;
}