-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sets up routing to dev, and dev container creates: -dev routing in browserrouter -dev routing in nav bar -dev container with "test" * Starting to build the dev site -bringing in headshot -starting to style -starting to put actual content on the dev page * Adds resume downloading Adds: -resume pdf -downloadable html tag for it * trying to make the lists less ugly is it working? who can say? * cleaninggg -adds rxgnosis image -gets rid of the iframe of doom -converts two gnarly lists into paragraphs * centers h1 and h2 headings, adds one for blog and resume * A bunch of dev site changes and some routing updates for art -changes client side routing on art from "work" to "art" in App, Work, and Nav - adds dev.to blog to social -puts the blockquote back in as a placeholder and adds styling to it so dev site is consistent with homepage -move some text around on dev site and add a bunch of icons for *ambiance* * trying to make icons easier to look at * replacing headshot, updating content * Fixing content for blog, quote, styling, and manifest.json also adds back in favicons
- Loading branch information
Showing
17 changed files
with
392 additions
and
6 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"background_color": "#ffffff", | ||
"theme_color": "#333333", | ||
"name": "femmefaust.us", | ||
"short_name": "femmefaut.us", | ||
"display": "minimal-ui", | ||
"start_url": "/", | ||
"icons": [ | ||
{ | ||
"src": "/favicon-16x16.png", | ||
"sizes": "16x16", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/favicon-32x32.png", | ||
"sizes": "32x32", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import { style } from "@vanilla-extract/css"; | ||
|
||
export const $hcenter = style({ | ||
textAlign: "center", | ||
}); | ||
|
||
export const $blurb = style({ | ||
"@media": { | ||
"screen and (min-width: 768px)": { | ||
display: "flex", | ||
flexFlow: "row nowrap", | ||
alignItems: "center", | ||
justifyContent: "space-between", | ||
margin: "40px auto", | ||
}, | ||
}, | ||
}); | ||
|
||
export const $figure = style({ | ||
width: "100%", | ||
// maxWidth: "300px", | ||
margin: "0 15px 0px", | ||
}); | ||
|
||
export const $img = style({ | ||
width: "100%", | ||
margin: "0", | ||
maxWidth: "300px", | ||
}); | ||
|
||
export const $figcaptions = style({ | ||
fontStyle: "italic", | ||
}); | ||
|
||
export const $listholder = style({ | ||
display: "flex", | ||
margin: "0", | ||
}); | ||
|
||
export const $list = style({ | ||
display: "inline-block", | ||
margin: "5px 0 0", | ||
padding: "0 10% 0", | ||
listStyleType: "circle", | ||
}); | ||
|
||
export const $blockquote = style({ | ||
width: "100%", | ||
maxWidth: "420px", | ||
margin: "20px auto", | ||
textAlign: "center", | ||
}); | ||
|
||
export const $blockquotep = style({ | ||
display: "block", | ||
margin: "0", | ||
position: "relative", | ||
}); | ||
|
||
export const $icon = style({ | ||
margin: "6px", | ||
}); | ||
|
||
export const $listitem = style({ | ||
display: "inline-flex", | ||
justifyContent: "center", | ||
}); | ||
|
||
export const $blog = style({ | ||
display: "block", | ||
justifyContent: "center", | ||
padding: "10px 20px", | ||
margin: "10px", | ||
border: "1px solid", | ||
boxShadow: "10px 10px 5px 0px rgba(0,0,0,0.75)", | ||
}); | ||
|
||
export const $blockquotecite = style({ textAlign: "right" }); |
Oops, something went wrong.