123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @font-face
- {
- font-family: STIX;
- src: url("http://127.0.0.1:5000/static/STIX2Text-Regular.woff") format("woff"),
- url("http://127.0.0.1:5000/static/STIX2Text-Regular.otf") format("truetype");
- }
- body
- {
- display: flex;
- justify-content: center;
- }
- .page
- {
- width: 550px;
- }
- h1,
- h2,
- h3
- {
- font-family: 'STIX', serif;
- font-weight: normal;
- font-size: 14pt;
- }
- h1
- {
- border-style: solid;
- border-width: 1px 0;
- text-align: center;
- font-size: 34pt;
- }
- @media (max-width: 560px)
- {
- .page
- {
- width: 100%;
- }
- }
|