From 8cf5cefe6e91a5a1ed6eeaae4d94760d84c304a6 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 5 Jun 2021 19:27:48 +0200 Subject: Presque sortie du jeu --- views/common/fonts.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 views/common/fonts.css (limited to 'views/common/fonts.css') diff --git a/views/common/fonts.css b/views/common/fonts.css new file mode 100644 index 0000000..ac8f9f0 --- /dev/null +++ b/views/common/fonts.css @@ -0,0 +1,27 @@ +@font-face { + font-family: "Comfortaa"; + src: url("regular.ttf"); + font-weight: normal; +} + +@font-face { + font-family: "Comfortaa"; + src: url("bold.ttf"); + font-weight: bold; +} + +*, body, html, div { + font-family: "Comfortaa", -apple-system, sans-serif; +} + +#gpuinfo, #gpuinfo * { + font-family: monospace !important; +} + +body, * { + cursor: url("../../cursors/main.png"), default !important; +} + +input { + cursor: url("../../cursors/text.png"), default !important; +} \ No newline at end of file -- cgit