2
0
mirror of https://github.com/elisescu/tty-server synced 2024-11-17 09:25:38 +00:00
tty-server/frontend/tty-receiver/main.css

129 lines
2.5 KiB
CSS
Raw Normal View History

2020-09-24 09:24:44 +00:00
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 800;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Black_Italic.ttf") format("truetype");
}
2020-09-24 09:24:44 +00:00
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 800;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Black.ttf") format("truetype");
}
2020-09-24 09:24:44 +00:00
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 700;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Bold_Italic.ttf") format("truetype");
}
2020-09-24 09:24:44 +00:00
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 700;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Bold.ttf") format("truetype");
}
2020-09-24 09:24:44 +00:00
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 250;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_ExtraLight_Italic.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 250;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_ExtraLight.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 400;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Italic.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 300;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Light_Italic.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 300;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Light.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 400;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Medium_Italic.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 400;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Medium.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 400;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: italic;
font-weight: 600;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Semibold_Italic.ttf") format("truetype");
2020-09-24 09:24:44 +00:00
}
@font-face {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
font-style: normal;
font-weight: 600;
2020-09-24 10:26:22 +00:00
src: url("../static/fonts/Sauce_Code_Pro_Semibold.ttf") format("truetype");
}
2020-01-05 20:34:02 +00:00
html, body {
width: 100%;
height: 100%;
margin: 0;
}
#terminal {
position: fixed;
top: 0;
width: 100%;
height: 100%;
}
2020-09-24 09:24:44 +00:00
xterm {
font-family: SauceCodePro;
2020-09-24 09:24:44 +00:00
}