Skip to content

Commit

Permalink
Add assets (#107)
Browse files Browse the repository at this point in the history
* fix(www): link styles (#100)

Co-authored-by: Nate Moore <[email protected]>

* chore: add assets

* docs: update readme

Co-authored-by: Nate Moore <[email protected]>
  • Loading branch information
natemoo-re and Nate Moore committed Apr 16, 2021
1 parent e43d98d commit 11bebe2
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 👩‍🚀 Astro
![Astro](https://raw.githubusercontent.com/snowpackjs/astro/main/assets/social/github-banner.png)

A next-generation static-site generator with partial hydration. Use your favorite JS framework and ship bare-minimum JS (or none at all!).
**Astro** is a next-generation static-site generator with partial hydration. Use your favorite JS framework and ship bare-minimum JS (or none at all!).

## 🔧 Setup

Expand Down
1 change: 1 addition & 0 deletions assets/brand/logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/brand/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/social/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/social/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added assets/social/banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/social/github-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions www/astro/components/Planets.astro
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@
position: absolute;
pointer-events: none;
z-index: 0;
top: 0;
right: 0;
bottom: 0;
left: 0;
inset: 0;
width: 100%;
height: 100%;
Expand Down
4 changes: 4 additions & 0 deletions www/astro/components/Space.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ import Stars from './Stars.astro';
<style lang="scss">
.space {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
inset: 0;
width: 100vw;
min-height: 100vh;
Expand Down
4 changes: 4 additions & 0 deletions www/astro/components/Stars.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@
pointer-events: none;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
inset: 0;
z-index: 0;
}
Expand Down
13 changes: 13 additions & 0 deletions www/public/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,24 @@ a {
}
}

&:visited {
// color: var(--color-green);
color: var(--color-green);
&:hover,
&:focus {
color: rgba(0, 0, 0, 1);
}
}

&::before {
transform-origin: bottom center;
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
inset: 0;
background: var(--color-green);
pointer-events: none;
Expand Down

0 comments on commit 11bebe2

Please sign in to comment.