resizing changes

This commit is contained in:
2021-09-24 23:34:50 -04:00
parent a386e4daf9
commit 4882b391c4
8 changed files with 27 additions and 54 deletions

View File

@@ -1,18 +0,0 @@
------------------
Freebie: Nice Things Icon Set (128 Icons, PNG, AI)
Designed by Chris Behr (http://www.chrisbehr.com/) and released for Smashing Magazine and its readers.
------------------
Dear Friends,
Thank you for downloading this icon set!
This freebie has been brought to you by SmashingMagazine.com. You can freely use it for both your private and commercial projects, including software, online services, templates and themes.
However, the icons may not be resold, sublicensed, rented, transferred or otherwise made available for use. The icons may not be offered for free downloading from websites other than SmashingMagazine.com.
Please link to the article in which this freebie was released if you would like to spread the word: http://www.smashingmagazine.com/2013/11/01/freebie-nice-things-icon-set/
Smashing Magazine Team,
www.smashingmagazine.com

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View File

@@ -6,10 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
name="Simonson - Portfolio"
content="Digital portfolio of Andrew Simonson"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -24,20 +23,10 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Simonson - Portfolio</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -8,12 +8,11 @@ h1, h2 {
font-family: "Roboto Condensed",sans-serif;
color: #1f1f1f;
}
h1{
font-size: 3rem;
}
.header h1{
display: inline-block;
margin-bottom: 0px;
margin-top: 2vmin;
font-size: 6vmin;
}
.header{
margin-bottom: 0px;
@@ -25,51 +24,55 @@ h1{
left: 0;
}
.socials{
display: block;
display: inline;
float: right;
margin: 0px;
}
.socials img{
display:inline;
height: 40px;
margin: .5vmin;
margin-top: 2vmin;
height: 6vmin;
}
.navBar li{
display: inline-block;
margin-bottom: 40px;
padding: 0px;
display: inline;
background-color: rgb(156,49,45,.5);
border-top: 3px black solid;
border-bottom: 3px black solid;
border-right: 3px black solid;
border-top: .5vmin black solid;
border-bottom: .5vmin black solid;
border-right: .5vmin black solid;
font-size: 4vmin;
}
.navBar li:hover{
background-color: rgb(156,49,45,.8);
}
.navBar li:first-child{
border-left: 3px black solid;
border-left: .5vmin black solid;
}
.navBar li a{
color: white;
padding: 40px;
line-height: 30px;
padding: 3vmax;
line-height: 1.2vmax;
}
.navBar{
margin-bottom: 0px;
}
.spacer{
margin-bottom:10em;
padding-left: 0px;
}
.foreground{
position:absolute;
margin-top: 13vmin;
margin-left: -10px;
padding-left: 10px;
width:100%;
background-color: rgb(156,49,45,.5);
}
img{
margin: 10px;
.foreground p{
max-width: 1000px;
}
h2{
font-size: calc(4vmin + 7px);
}
p{
color: #ffffff;
font-size: calc(3vmin + 3px);
}
a {
color: #a0a0a0a0;

View File

@@ -16,7 +16,6 @@ function App() {
<Link onClick='/projects'>Projects</Link>
</Nav>
</div>
<div className='spacer'></div>
<div className='foreground'>
<About />
</div>

View File

@@ -7,7 +7,7 @@ import email from '../assets/email.svg'
export default function Socials(){
return(
<ul class='socials'>
<ul class='socials' data-aos='fade-up'>
<a href='https://github.com/asimonson1125'><img alt='Github' src={github} /></a>
<a href='https://www.instagram.com/an_a.simonson/'><img alt='Instagram' src={instagram} /></a>
<a href='https://www.linkedin.com/in/simonsonandrew/'><img alt='LinkedIn' src={linkedin} /></a>