first commit
This commit is contained in:
31
site/style/textFont.css
Normal file
31
site/style/textFont.css
Normal file
@@ -0,0 +1,31 @@
|
||||
.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: 1vw;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 980px) {
|
||||
:root {
|
||||
--textSize: 2vw;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user