diff --git a/.gitignore b/.gitignore index 28f1ba7..24856e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -.DS_Store \ No newline at end of file +.DS_Store +.vscode \ No newline at end of file diff --git a/index.html b/index.html index d039dee..56ca647 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,16 @@ - + +
diff --git a/package-lock.json b/package-lock.json index 504aa51..5072227 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,13 +9,16 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "@picocss/pico": "^1.5.10" + "@picocss/pico": "^2.0.0" } }, "node_modules/@picocss/pico": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/@picocss/pico/-/pico-1.5.10.tgz", - "integrity": "sha512-+LafMsrwPxXQMk6sI///TmSInCwwZmq+K7SikyL3N/4GhhwzyPC+TQLUEqmrLyjluR+uIpFFcqjty30Rtr6GxQ==" + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@picocss/pico/-/pico-2.0.4.tgz", + "integrity": "sha512-KGx1hNnG1eeM9/lZ2VvAZNDLytCZtdR3i55pMgAt2+EVgx0rMFOnHLp+TKUqpKBWaheQVEyjbq+1ZGNNcBEATA==", + "engines": { + "node": ">=18.19.0" + } } } } diff --git a/package.json b/package.json index 0bfa7fc..3af4e6b 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,6 @@ "author": "", "license": "ISC", "dependencies": { - "@picocss/pico": "^1.5.10" + "@picocss/pico": "^2.0.0" } } diff --git a/site.css b/site.css index 0769c2e..0c5652d 100644 --- a/site.css +++ b/site.css @@ -1,24 +1,28 @@ .closed-on-mobile { - display: none; + display: none; +} + +h1 { + padding-top: 20px; } @media (min-width: 992px) { - main { - --block-spacing-horizontal: calc(var(--spacing) * 1.75); - grid-column-gap: calc(var(--block-spacing-horizontal) * 3); - display: grid; - grid-template-columns: 200px auto; - } + main { + --block-spacing-horizontal: calc(var(--spacing) * 1.75); + grid-column-gap: calc(var(--block-spacing-horizontal) * 3); + display: grid; + grid-template-columns: 200px auto; + } - .closed-on-mobile { - display: block; - } + .closed-on-mobile { + display: block; + } - main > aside nav { - position: fixed; - width: 200px; - max-height: calc(100vh - 5.5rem); - overflow-x: hidden; - overflow-y: auto; - } -} \ No newline at end of file + main > aside nav { + position: fixed; + width: 200px; + max-height: calc(100vh - 5.5rem); + overflow-x: hidden; + overflow-y: auto; + } +}