mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 09:31:09 -05:00
- Implemented font color configuration based on numeric values in various sections. - Added resizing functionality for input fields to accommodate text length. - Initialized filters on document ready for improved user interaction. - Created visualization for profile data using fetched dot format. - Enhanced SQL detail page with click event handling for row navigation. - Ensured consistent highlighting for code blocks across multiple pages.
73 lines
1.6 KiB
CSS
73 lines
1.6 KiB
CSS
/**
|
|
* Fira Sans
|
|
*/
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-Regular.woff);
|
|
font-weight: normal;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-Medium.woff);
|
|
font-weight: bold;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-Bold.woff);
|
|
font-weight: bolder;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-Light.woff);
|
|
font-weight: lighter;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-RegularItalic.woff);
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-MediumItalic.woff);
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-BoldItalic.woff);
|
|
font-weight: bolder;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: FiraSans;
|
|
src: url(../../fonts/fira/FiraSans-LightItalic.woff);
|
|
font-weight: lighter;
|
|
font-style: italic;
|
|
}
|
|
/**
|
|
* Fantasque
|
|
*/
|
|
@font-face {
|
|
font-family: Fantasque;
|
|
src: url(../../fonts/fantasque/FantasqueSansMono-Regular.woff);
|
|
font-weight: normal;
|
|
}
|
|
@font-face {
|
|
font-family: Fantasque;
|
|
src: url(../../fonts/fantasque/FantasqueSansMono-Bold.woff);
|
|
font-weight: bold;
|
|
}
|
|
@font-face {
|
|
font-family: Fantasque;
|
|
src: url(../../fonts/fantasque/FantasqueSansMono-RegItalic.woff);
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: Fantasque;
|
|
src: url(../../fonts/fantasque/FantasqueSansMono-BoldItalic.woff);
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|