12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @font-face {
- font-family: 'Inconsolata';
- font-style: normal;
- font-weight: 400;
- src: local('Inconsolata-Regular'), local('Inconsolata'), local('Inconsolata Regular'), url('../fonts/inconsolata/Inconsolata-Regular.ttf');
- }
- @font-face {
- font-family: 'Inconsolata';
- font-style: normal;
- font-weight: 700;
- src: local('Inconsolata-Bold'), local('Inconsolata Bold'), url('../fonts/inconsolata/Inconsolata-Bold.ttf');
- }
- body {
- padding-left: 20px;
- padding-right: 20px;
- max-width: 1024px;
- margin-left: auto;
- margin-right: auto;
- display: flex;
- font-family: 'Inconsolata', regular;
- flex-direction: column;
- font-size: 12pt;
- min-width: 500px;
- }
- .main-wrapper {
- flex: 1;
- /* This is used to make the footer "flush" with the rest of the page */
- min-height: 95.5vh;
- }
- a {
- text-decoration: none;
- transition: text-shadow .22s;
- }
- a:hover {
- text-shadow: 0px 0px 2px #ffb0fe;
- }
- a:visited {
- text-decoration: none;
- }
- .footer {
- font-size: 10pt;
- text-align: center;
- }
- .footer a:hover {
- text-shadow: 0px 0px 1px #a981a9;
- }
- div.code {
- border-radius: 5px;
- border: 3px solid #110e13;
- background: #110e13;
- padding: 20px;
- margin: 20px;
- overflow: hidden;
- white-space: pre;
- }
|