|
2 | 2 | @import url( "https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:[email protected]&display=swap");
|
3 | 3 |
|
4 | 4 | :root {
|
5 |
| - --pico-color: #c0bfc0; |
6 |
| - --pico-primary: rgb(203, 198, 182); |
7 |
| - --pico-primary-border: var(--pico-primary); |
8 |
| - --pico-border-radius: 2rem; |
9 |
| - --pico-background-color: rgb(39, 33, 31); |
10 |
| - --pico-blockquote-border-color: #7b7b7b; |
11 |
| - --pico-blockquote-footer-color: var(--pico-blockquote-border-color); |
12 |
| - --pico-text-underline-offset: 0.5rem; |
13 |
| - --pico-spacing: 1.5rem; |
14 |
| - --pico-typography-spacing-vertical: 1.5rem; |
15 |
| - --pico-form-element-spacing-vertical: 1rem; |
16 |
| - --pico-form-element-spacing-horizontal: 1.25rem; |
17 |
| - --pico-box-shadow: 0 20px 2rem rgba(0, 0, 0, 0.331); |
| 5 | + --pico-color: #c0bfc0; |
| 6 | + --pico-primary: rgb(203, 198, 182); |
| 7 | + --pico-primary-border: var(--pico-primary); |
| 8 | + --pico-border-radius: 2rem; |
| 9 | + --pico-background-color: rgb(39, 33, 31); |
| 10 | + --pico-blockquote-border-color: #7b7b7b; |
| 11 | + --pico-blockquote-footer-color: var(--pico-blockquote-border-color); |
| 12 | + --pico-text-underline-offset: 0.5rem; |
| 13 | + --pico-spacing: 1.5rem; |
| 14 | + --pico-typography-spacing-vertical: 1.5rem; |
| 15 | + --pico-form-element-spacing-vertical: 1rem; |
| 16 | + --pico-form-element-spacing-horizontal: 1.25rem; |
| 17 | + --pico-box-shadow: 0 20px 2rem rgba(0, 0, 0, 0.331); |
18 | 18 | }
|
19 | 19 |
|
20 | 20 | html {
|
21 |
| - scroll-behavior: smooth; |
| 21 | + scroll-behavior: smooth; |
22 | 22 | }
|
23 | 23 |
|
24 | 24 | * {
|
25 |
| - box-sizing: border-box; |
| 25 | + box-sizing: border-box; |
26 | 26 | }
|
27 | 27 |
|
28 | 28 | body {
|
29 |
| - font-family: "Playwrite DE Grund", sans-serif; |
30 |
| - font-size: 1rem; |
31 |
| - line-height: 1.5; |
32 |
| - margin: 0; |
33 |
| - padding: 0; |
| 29 | + font-family: "Playwrite DE Grund", sans-serif; |
| 30 | + font-size: 1rem; |
| 31 | + line-height: 1.5; |
| 32 | + margin: 0; |
| 33 | + padding: 0; |
34 | 34 | }
|
35 | 35 |
|
36 | 36 | hr {
|
37 |
| - border: 0; |
38 |
| - border-top: 1px solid rgba(255, 255, 255, 0.1); |
39 |
| - margin: 3rem 0; |
| 37 | + border: 0; |
| 38 | + border-top: 1px solid rgba(255, 255, 255, 0.1); |
| 39 | + margin: 3rem 0; |
40 | 40 | }
|
41 | 41 |
|
42 | 42 | h1,
|
|
45 | 45 | h4,
|
46 | 46 | h5,
|
47 | 47 | h6 {
|
48 |
| - --pico-font-family: Borel, cursive; |
49 |
| - --pico-font-weight: 400; |
50 |
| - --pico-typography-spacing-vertical: 0.5rem; |
| 48 | + --pico-font-family: Borel, cursive; |
| 49 | + --pico-font-weight: 400; |
| 50 | + --pico-typography-spacing-vertical: 0.5rem; |
51 | 51 | }
|
52 | 52 |
|
53 | 53 | section {
|
54 |
| - margin-bottom: 5rem; |
| 54 | + margin-bottom: 5rem; |
55 | 55 | }
|
56 | 56 |
|
57 | 57 | svg {
|
58 |
| - margin: 20px 10px; |
| 58 | + margin: 20px 10px; |
59 | 59 | }
|
60 | 60 |
|
61 | 61 | article {
|
62 |
| - --pico-card-background-color: var(--pico-background-color); |
63 |
| - box-shadow: none; |
64 |
| - margin-top: 50px; |
65 |
| - padding: 100px 100px; |
66 |
| - transition: 0.1s ease-in-out; |
| 62 | + --pico-card-background-color: var(--pico-background-color); |
| 63 | + box-shadow: none; |
| 64 | + margin-top: 50px; |
| 65 | + padding: 100px 100px; |
| 66 | + transition: 0.1s ease-in-out; |
67 | 67 | }
|
68 | 68 |
|
69 | 69 | .visible-article {
|
70 |
| - --pico-card-background-color: rgb(27, 21, 19); |
| 70 | + --pico-card-background-color: rgb(27, 21, 19); |
71 | 71 | }
|
72 | 72 | .visible-article:hover {
|
73 |
| - --pico-card-background-color: rgb(20, 15, 13); |
74 |
| - box-shadow: 0 20px 2rem rgba(8, 7, 7, 0.446); |
| 73 | + --pico-card-background-color: rgb(20, 15, 13); |
| 74 | + box-shadow: 0 20px 2rem rgba(8, 7, 7, 0.446); |
75 | 75 | }
|
76 | 76 |
|
77 | 77 | .center {
|
78 |
| - text-align: center; |
| 78 | + text-align: center; |
79 | 79 | }
|
80 | 80 |
|
81 | 81 | .faded {
|
82 |
| - opacity: 0.5; |
| 82 | + opacity: 0.5; |
83 | 83 | }
|
84 | 84 |
|
85 | 85 | .very-faded {
|
86 |
| - opacity: 0.2; |
| 86 | + opacity: 0.2; |
87 | 87 | }
|
88 | 88 |
|
89 | 89 | .large-icon {
|
90 |
| - font-size: 2rem; |
| 90 | + font-size: 2rem; |
| 91 | +} |
| 92 | + |
| 93 | +.footer { |
| 94 | + position: fixed; |
91 | 95 | }
|
92 | 96 |
|
93 | 97 | @media (min-width: 1025px) {
|
94 |
| - .container { |
95 |
| - width: 1024px; |
96 |
| - } |
| 98 | + .container { |
| 99 | + width: 1024px; |
| 100 | + } |
97 | 101 | }
|
0 commit comments