Skip to content
View GregJacobs82's full-sized avatar
Block or Report

Block or report GregJacobs82

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
GregJacobs82/README.md
GregJacobs.com Logo - by Greg Jacobs

UI/UX Designer & Front End Developer

I develop user interfaces and user experiences for websites and web applications... and I love it 🙂

I'm a seasoned UI/UX Designer and Frontend Developer with a passion for crafting intuitive digital experiences. With a proven track record spanning since I built my first computer in 1996, I have collaborated on a myriad of projects, seamlessly fusing creativity and functionality to bring designs to life.

My journey has equipped me with a deep understanding of user-centered design principles, enabling me to bridge the gap between aesthetics and seamless functionality. Join me as I continue to shape pixels and code, harmonizing innovation and user satisfaction to create digital landscapes that captivate and engage.


My Online Presence:

gregjacobs gregjacobs gregjacobs82 gregjacobs gregjacobs gregoryjacobsdesigns officialgregjacobs

GregJacobs82

Pinned

  1. All CSS Cursors All CSS Cursors
    1
    //********************/
    2
    //*** ALL CURSORS  ***/
    3
    //********************/
    4
    $cursorsArray: (
    5
        alias , // {cursor: alias;}
  2. Cross Browser Prefixes (use with Att... Cross Browser Prefixes (use with Attribute or Value)
    1
    //****************************************************/
    2
    //****************************************************/
    3
    //***                                              ***/
    4
    //***    CROSS BROWSER PREFIXES (cross-browser)    ***/
    5
    //***                                              ***/
  3. SCSS: OPACITY (1 - 100) SCSS: OPACITY (1 - 100)
    1
    //*** OPACITY ***/
    2
    // EXAMPLE OUTPUT: .opacity-50 { opacity: .5; }
    3
    @for $i from 1 through 100 {
    4
        .opacity-#{$i} {
    5
            opacity: #{$i * .01};
  4. SCSS: Get index of a key value SCSS: Get index of a key value
    1
    $colors: (
    2
        a: red,
    3
        b: green,
    4
        c: blue
    5
    );
  5. SCSS: Responsive iFrame SCSS: Responsive iFrame
    1
    /* Then style the iframe to fit in the container div with full height and width */
    2
    .responsive-iframe {
    3
        position: relative;
    4
        overflow: hidden;
    5
        width: 100%;
  6. Create Multiple Box Shadow classname... Create Multiple Box Shadow classnames to use throughout your project by simply creating a new variable and adding it to the GlobalShadowsArray
    1
    // Create Multiple Box Shadow classnames to use throughout your project by simply creating a new variable and adding it to the GlobalShadowsArray
    2
    // 1. Create a new shadow variable in [BOX SHADOW VARIABLES]. (ie. $shadow-5)
    3
    // 2. Add the shadow name and shadow variable to the $GlobalShadowsArray. (ie. shadow-5 $shadow-5)
    4
    // 3. Run scss compiler :)
    5
    //