mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 19:03:07 +09:00
15 lines
249 B
CSS
15 lines
249 B
CSS
@font-face {
|
|
--a: MyTestFontName;
|
|
font-family: var(--a);
|
|
src: url(./Ahem.ttf);
|
|
}
|
|
@font-face {
|
|
font-family: MyTestFontName2;
|
|
src: url(./Ahem.ttf);
|
|
}
|
|
#a {
|
|
font-family: MyTestFontName, serif;
|
|
}
|
|
#b {
|
|
font-family: MyTestFontName2, serif;
|
|
}
|