Skip to content

Commit c0466a7

Browse files
committed
Merge branch 'release/2.0.0'
2 parents 9cafc81 + eb769bd commit c0466a7

63 files changed

Lines changed: 1121 additions & 638 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: './views'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
## About
44

5-
- Two single page web apps brought together to create a living resume.
6-
- Homepage showcases my living resume and projects.
7-
- Wiki page is linked housing the more about me topics.
5+
- Single page living resume.
86

97
## Stack
108

@@ -15,4 +13,3 @@
1513

1614
- Incorporating a JS feature.
1715
- Updating CodePen portfolio with a recent CSS feature.
18-
- Create a dedicated layout stylesheet.

css/hero.css

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
#hero-section {
2+
margin-bottom: 0;
3+
4+
@media screen and (max-width: 621px) {
5+
h1 {
6+
font-size: 2.5em;
7+
}
8+
9+
p {
10+
font-size: 1em;
11+
}
12+
}
13+
14+
@media screen and (max-width: 445px) {
15+
h1 {
16+
font-size: 1.25em;
17+
}
18+
19+
p {
20+
font-size: 0.75em;
21+
}
22+
}
23+
24+
.hero-items {
25+
display: flex;
26+
flex-flow: column;
27+
padding-top: 12rem;
28+
padding-left: 1.5rem;
29+
30+
@media screen and (max-width: 775px) {
31+
padding-top: 8rem;
32+
}
33+
}
34+
}
35+
36+
.welcome {
37+
margin-top: 10rem;
38+
margin-bottom: 10rem;
39+
}
40+
41+
.greeting {
42+
background: white;
43+
opacity: 85%;
44+
border-top-left-radius: 15%;
45+
border-bottom-right-radius: 15%;
46+
border-style: dashed;
47+
border-width: 0.4rem;
48+
border-block-start-color: darkred;
49+
width: 80%;
50+
margin-top: -10rem;
51+
margin-left: 10rem;
52+
padding: 6rem;
53+
54+
h1 {
55+
text-shadow: 3px 3px 2px darkgray;
56+
}
57+
58+
p {
59+
letter-spacing: 2px;
60+
text-shadow: 1px 1px 1px darkgray;
61+
}
62+
63+
@media screen and (max-width: 1035px) {
64+
width: 80%;
65+
margin-top: -10rem;
66+
margin-left: 10rem;
67+
padding: 4rem;
68+
}
69+
70+
@media screen and (max-width: 775px) {
71+
margin-top: -6rem;
72+
margin-left: 6rem;
73+
padding: 3rem;
74+
}
75+
76+
@media screen and (max-width: 621px) {
77+
margin-top: -4rem;
78+
margin-left: 5rem;
79+
padding: 2rem;
80+
}
81+
82+
@media screen and (max-width: 445px) {
83+
padding: 1rem;
84+
margin-top: -3rem;
85+
margin-left: 1rem;
86+
}
87+
}
88+
89+
90+
.logo {
91+
width: 60%;
92+
margin-bottom: 0.5rem;
93+
94+
img {
95+
border-radius: 50%;
96+
background-color: white;
97+
overflow: hidden;
98+
width: 75%;
99+
}
100+
101+
@media screen and (max-width: 775px) {
102+
width: 50%;
103+
margin-left: 0;
104+
}
105+
106+
.testing-calc {
107+
display: block;
108+
background: yellow;
109+
width: 100%;
110+
}

0 commit comments

Comments
 (0)