123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- :root {
- --bg: #252525;
- --fg: #ffffff;
- --fg-5: #ccc;
- --gray-6: #4f4f4f;
- --gray-5: #404040;
- --gray-4: #333;
- --gray-3: #252525;
- --card-border: #396690;
- }
- @font-face {
- font-family: 'Finlandica';
- src: url('/fonts/Finlandica-Regular.otf')
- }
- body {
- background-color: var(--bg);
- color: var(--fg);
- font-family: 'Finlandica';
- font-size: 18px;
- margin: 0;
- }
- /* Buttons */
- button {
- background-color: var(--gray-4);
- border: 1px solid var(--gray-5);
- padding: 0.25em;
- color: var(--fg-5);
- font-size: 18px;
- }
- button:hover {
- background-color: var(--gray-6);
- }
- a {
- text-decoration: underline;
- }
- a:hover {
- text-decoration: none;
- }
- .text-center {
- text-align: center;
- }
- .actions {
- display: flex;
- }
- .actions-row {
- display: flex;
- flex-flow: row;
- width: 100%;
- justify-content: center;
- }
- .action {
- display: flex;
- flex-flow: column;
- text-align: center;
- position: relative;
- background-color: transparent;
- border-radius: 10px;
- padding: 1em;
- transition: 100ms;
- }
- .action:hover {
- background-color: rgba(255, 255, 255, 0.3);
- }
- .action > img {
- max-width: 128px;
- margin-top: 1em;
- }
- .action > a {
- display: block;
- width: 100%;
- height: 100%;
- color: var(--fg);
- }
- .stretched-link {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- z-index: 1;
- }
- /* Breadcrumbs */
- .breadcrumb {
- padding: 0 .5rem;
- }
- .breadcrumb ul {
- display: flex;
- flex-wrap: wrap;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .breadcrumb li:not(:last-child)::after {
- display: inline-block;
- margin: 0 .25rem;
- content: "→";
- color: #808080;
- }
- .breadcrumb-item a {
- color: #006DFF;
- }
- .breadcrumb-item.active {
- color: #808080;
- }
- /* End Breadcrumbs */
- /* Cards */
- .card {
- border: 2px solid var(--card-border);
- border-radius: 15px;
- background-color: #2f2f2f;
- padding: 1em;
- margin: 2em auto;
- width: 80%;
- }
- .card.error {
- background-color: #4B2224;
- border-color: red;
- color: #f9fbf8;
- }
- /* End Cards */
- /* Forms */
- .form-control-container {
- margin: 1em auto;
- position: relative;
- display: grid;
- grid-template-columns: 50% 50%;
- }
- label {
- padding: 0.5em;
- }
- .form-control {
- padding: 0.5em;
- background-color: var(--bg);
- color: var(--fg);
- outline: none;
- border: 1.5px solid transparent;
- border-radius: 5px;
- font-size: 14pt;
- }
- .form-control:focus {
- border: 1.5px solid var(--card-border);
- box-shadow: 0px 0px 2px 2px var(--card-border);
- }
- .form-control:hover {
- box-shadow: 0px 0px 2px 2px var(--card-border);
- }
- /* End Forms */
|