Skip to content
View aamortimer's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report aamortimer

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
aamortimer/README.md

About me

A web developer with over 20 years experience, who is comfortable working either in a team environment or self-directed projects. An adaptive individual who enjoys learning new skills and updating their current skill set. Confident working on all size projects weather small personal projects or larger e-commerce site. Holds a strong belief in doing comprehensive, cross-platform and cross-browser code that produces high-quality, good-looking, and useful web sites.

  • Highly values thoughtful Web site design and branding and considers cohesive site design to be of great importance.
  • Experienced at building e-commerce, blogs, content management system solutions, and custom web applications.
  • Strives for good communication and teamwork skills and is always supportive to co-workers.

Pinned Loading

  1. brewfile brewfile Public

    New mac setup

    Shell

  2. git git Public

    Git tips

  3. CSS: rem font-size CSS: rem font-size
    1
    @mixin font-size($size: 1.6,  $line: $size * 1.5) {
    2
      font-size: ($size * 10) + px;
    3
      line-height: ($line * 10) + px;
    4
      font-size: $size + rem;
    5
      line-height: $line + rem;
  4. CSS: Breakpoints CSS: Breakpoints
    1
    @mixin breakpoint($point) {
    2
      @if $point == large {
    3
        @media (max-width: 1600px) { @content; }
    4
      }
    5
      @else if $point == medium {