Giter VIP home page Giter VIP logo

modern_portfolio's Introduction

Build a Portfolio

I have build a responsive website that will display images. links and description. This is my first portfolio project.

Files Included

  • index.html
  • main.css in css folder
  • Gruntfile.js
  • img folder
  • dist folder
  • package.json

modern_portfolio's People

Contributors

aditya20kul avatar bradtraversy avatar daveydee33 avatar dependabot[bot] avatar mohitpawar530-zz avatar syedfaizanrazzaque avatar zaccodes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

modern_portfolio's Issues

How to publish this portfolio on a server ?

HI Brad !

I folowed your tutorial to create my own portfolio but I don't want to publish my portfolio on github pages. I'd prefer to have it as a real website on https server.

Do you know how to manage that ? I know how to publish a website that uses PHP but not scss or sass.

Thanks for all the good stuff you share !

main.js file not working

The hamburger icon which when clicked is suppose to transform into the close button is not working. There are no errors in console and the scss is compiling into main.css without any problems. I re-run npm run sass and refreshed many times but without any luck. Please help solve my problem.

Updating Project files on Github

I had made some modifications to index.html after it has been uploaded and working nice but while upload the modified index.html and run the website nothing changed and first version still same!?

Any idea as I used drag the file and save changes and I can find it on Github but on my Githubpages link not?

Possible error in medium-screen mixin

@media screen and (max-width: 768px) {

You have:

@mixin mediaMd {
  @media screen and (max-width: 768px) {

Which creates a branching overlap (a 500px width device reports as Sm and Md)

Did you want:

@mixin mediaMd {
  @media screen and (min-width: 501px) and (max-width: 768px) {

?

IIUC this would also entail changing:

@include mediaMd {
so that Sm and Md screens trigger that code-block.

main.scss is not updating index.html

In the second video @ 8:24 where Brad is adding css to the main.scss, my index.html isn't updating the formatting changes. I've closed VS code and issued the run npm sass statement multiple times already, along with stopping and starting Live server, all to no avail. Any suggestions on what I can do?

NPM not working. npm run start nor npm run deploy. I don't remember changing anything in the code. I just wanted to update my file

`PS C:\modern_portfolio> npm run deploy

[email protected] deploy C:\modern_portfolio
gh-pages -d dist

error: cannot spawn sh: No such file or directory
fatal: unable to fork

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] deploy: gh-pages -d dist
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] deploy script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\willi\AppData\Roaming\npm-cache_logs\2018-12-07T01_08_54_886Z-debug.log
PS C:\modern_portfolio>`

Portrait Overlay not working

I followed the video responsive Portfolio Website [4] - Menu Overlay & Responsiveness
exactly.
But my portrait overlay is not working.
Here is my _menu.scss code
&-branding,
&-nav {
display: flex;
flex-flow: column wrap;
align-items: center;
justify-content: center;
float: left;
width: 50%;
height: 100vh;
overflow: hidden;
}

&-nav {
margin: 0;
padding: 0;
background: rgba(darken($primary-color, 5), 0.9);
list-style: none;
transform: translate3d(0, -100%, 0);
@include easeOut;

&.show {
  //slide in from top
  transform: translate3d(0, 0, 0);
}

}

//Branding
&-branding {
background: rgba($primary-color, 0.9);
transform: translate3d(0, 100%, 0);
@include easeOut;

&.show {
  //slide in from bottom
  transform: translate3d(0, 0, 0);
}

.portrait {
  width: 250px;
  height: 250px;
  background: url("../img/portrait.jpg");
  border-radius: 50%;
  border: solid 3px $secondary-color;
}

}

Menu Doesn't works on IE

Hi Brad,

The Project is Awesome, but it doesn't work on IE, may be due to ClassList or AddEventListener issue.

Thanks!!

No mixin named ease0ut

I get errors when trying to save
"status": 1,
"file": "C:/users/yo/desktop/code/modern_portfolio/sccs/_menu.scss",
"line": 8,
"column": 12,
"message": "no mixin named easeOut",
"formatted": "Error: no mixin named easeOut\n on line 8 of sccs/_menu.scss\n from line 2 of sccs/main.scss\n>> @include easeOut;\r\n -----------^\n"

I have checked the code vs yours on github 100 times..

Branding Slide not working

The nav items working fine but when it comes to the code doesn't work! Even I copy-pasted your code but it won't.

`

// Branding Side
&-branding {
background: $primary-color;
transform: translate3d(0, 100%, 0);
@include easeOut;

&.show {
  // Slide in from bottom
  transform: translate3d(0, 0, 0);
}

}

`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.