space-partz / Muhammadhakeem_dotcom

A portfolio website design dedicated to my skills as a designer and web developer.
https://muhammadhakeem.com
1 stars 1 forks source link

Styling of the Page #17

Closed space-partz closed 3 months ago

space-partz commented 3 months ago
space-partz commented 3 months ago

Char Char Proposes: Styling the text on the resume page includes---

- Replacing the Experience Section with an Avatar Button Layout that allows the reader to click the button and reveal: JOB TITLE COMPANY NAME LOCATION DURATION OF EXPERIENCE/POSITION DESCRIPTION OF DUTIES

The reason I am proposing this, is because there is an issue with applying for jobs as someone that is multi talented, although one job is specifically looking for a certain position there is also another job of interest looking for a different set of skills. This may save time with making multiple templates of a resume fitting a multitude of positions.

- Replacing the Skills Section with a Graph Layout that allows the reader to view a comparison of the author skill sets: SKILL NUMBER OF YEARS PERCENTAGE REPRESENTATION

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Interactive Resume</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
        }
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1, h2, h3 {
            text-align: center;
        }
        .section {
            margin-bottom: 20px;
        }
        .graph {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        .skill-bar {
            display: flex;
            align-items: center;
            margin: 10px 0;
            position: relative;
        }
        .skill-bar div {
            width: 100%;
            background-color: #e0e0e0;
            height: 25px;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        .skill-bar span {
            display: block;
            height: 100%;
            background-color: #76c7c0;
            line-height: 25px;
            color: #fff;
            border-radius: 5px;
            position: relative;
            z-index: 1;
            padding-left: 10px;
            padding-right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .skill-label {
            z-index: 2;
        }
        .years-experience {
            z-index: 2;
        }
        @media screen and (max-width: 600px) {
            .skill-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .skill-bar span {
                width: 100%;
                padding: 0;
                justify-content: flex-start;
            }
            .skill-label {
                padding-left: 10px;
            }
            .years-experience {
                padding-right: 10px;
                text-align: right;
            }
        }
        .timeline {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: #76c7c0;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 20px;
            position: relative;
            width: 50%;
            left: 50%;
            margin-bottom: 20px;
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            background-color: white;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: #76c7c0;
            border: 4px solid #76c7c0;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .timeline-item.left {
            left: 0;
        }
        .timeline-item.left::after {
            left: -17px;
        }
        .timeline-item h3, .timeline-item p {
            margin: 0;
        }
        .timeline-item ul {
            margin: 10px 0 0;
            padding: 0 20px;
        }
        .timeline-item ul li {
            list-style: none;
            margin-bottom: 5px;
        }
        @media screen and (max-width: 600px) {
            .timeline::after {
                left: 20px;
            }
            .timeline-item {
                width: calc(100% - 40px);
                left: 20px;
            }
            .timeline-item.left {
                left: 20px;
            }
            .timeline-item::after, .timeline-item.left::after {
                left: -17px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>My Interactive Resume</h1>

        <div class="section">
            <h2>About Me</h2>
            <p>Dedicated and innovative Computer Science student with a lifelong passion for photography and media arts. Combining technical expertise with creative vision, I excel in capturing compelling images and creating engaging multimedia content. Proficient in advanced photo editing software including Adobe Photoshop and Bridge, I bring a unique blend of technical skills and artistic flair to every project. Experienced in both digital and print media, with a keen eye for detail and a strong portfolio showcasing city architecture and nature. Seeking a photographer position to leverage my skills in visual storytelling and technology.</p>
        </div>

        <div class="section">
            <h2>Education</h2>
            <p>Associate's degree in Computer Science<br>
            Malcom X Community College - Chicago, IL<br>
            January 2024 to Present</p>
        </div>

        <div class="section">
            <h2>Skills</h2>
            <div class="graph">
                <div class="skill-bar">
                    <div><span style="width: 90%;"><span class="skill-label">Multimedia</span><span class="years-experience">10+ years</span></span></div>
                </div>
                <div class="skill-bar">
                    <div><span style="width: 90%;"><span class="skill-label">Adobe Suite</span><span class="years-experience">10+ years</span></span></div>
                </div>
                <div class="skill-bar">
                    <div><span style="width: 60%;"><span class="skill-label">Figma</span><span class="years-experience">5+ years</span></span></div>
                </div>
                <div class="skill-bar">
                    <div><span style="width: 90%;"><span class="skill-label">CMS</span><span class="years-experience">10+ years</span></span></div>
                </div>
                <div class="skill-bar">
                    <div><span style="width: 50%;"><span class="skill-label">Commercial Driving</span><span class="years-experience">5+ years</span></span></div>
                </div>
                <div class="skill-bar">
                    <div><span style="width: 70%;"><span class="skill-label">Social Media Management</span><span class="years-experience">7+ years</span></span></div>
                </div>
            </div>
        </div>

        <div class="section">
            <h2>Experience</h2>
            <div class="timeline">
                <div class="timeline-item left">
                    <h3>Freelance Web Designer/Developer</h3>
                    <p>Intyce Tees LLC - Chicago, IL<br>July 2023 to Present</p>
                    <ul>
                        <li>Actively implement w3c practices and functions in order to maintain registry of 30 domains while coordinating with registrar on server uptime.</li>
                        <li>Prepare proposals towards the development of custom websites and web apps that meet the unique needs of clients.</li>
                        <li>Identify, capture and process rare perspectives of subjects for visual storytelling with Canon and DJI photography and video equipment.</li>
                    </ul>
                </div>
                <div class="timeline-item right">
                    <h3>Creative Director</h3>
                    <p>Intyce Tees LLC - Grand Rapids, MI<br>August 2019 to July 2023</p>
                    <ul>
                        <li>Actively seek out responsible clothing manufacturers and trends in order to develop clothing collection reports for next season.</li>
                        <li>Integrate Adobe Illustrator and Photoshop in order to prototype clothing materials into fashion pieces.</li>
                        <li>Utilize Chroma and Ricoma EM1010 along with Ricoh RI 1000 to develop stylish fashion items.</li>
                        <li>Showcase and Photograph final design on models in relevant and busy locations under the best light.</li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
space-partz commented 3 months ago

This issue has been primarily solved. The styling for the resume page is adquate