﻿h1, h2, h3 {
    /* via http://rachaelmoore.name/posts/design/css/web-safe-helvetica-font-stack/#sthash.tT7aN9ah.dpuf
       and http://www.google.com/fonts/#QuickUsePlace:quickUse/Family:Roboto */
    font-family: "Roboto", "HelveticaNeueUltraLight", "HelveticaNeue-Ultra-Light", "Helvetica Neue Ultra Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Arial", sans-serif;
    font-weight: 100;
    font-stretch: normal;
    /* simulate better antialiasing http://stackoverflow.com/a/4012154/29 */
    text-shadow: 0 0 1px rgba(0,0,0,0.3);
}

#header .button {
    margin-bottom: 0;
}

#header ul {
    margin-top: 1em;
    white-space: nowrap;
}
#header ul li {
    margin-left: .625em;
}

#slogan {
    text-align: right;
}

li > em {
    color: #777;
}

#header h1 {
    margin-bottom: .25em;
}

    #header h1 a:link, #header h1 a:visited {
        color: #000;
        transition: color 300ms ease-out;
    }

    #header h1 a:hover, #header h1 a:active {
        color: #2284a1;
        transition: color 300ms ease-out;
    }

#header ul a:link, #header a:visited {
    color: #fff;
}

#header ul a:hover, #header a:active {
    color: #fff;
}

#footer {
    color: #888;
}

#footer div {
    font-size: 75%;
}

#footer ul {
    list-style-type: none;
    margin-left: 0;
}

hr {
    border-top: 1px dashed #b1b1b1;
    color: #fff;
    background-color: #fff;
    height: 1px;
}

#share-url {
    padding: 5px;
    background-color: #eee;
    border: 1px dashed #2284a1;
}

.row.list-page-row {
    max-width: 100em;
}


a.meme-thumb {
    display: inline-block;
    padding: 2px;
}

    a.meme-thumb div {
        border-radius: 10%;
    }

    a.meme-thumb:hover div {
        box-shadow: 0 0 5px #2284a1;
        transition: all ease-in-out 100ms;
    }

.framed {
    border-radius: 3px;
    border: 1px solid #b1b1b1;
}

.throb{
    -webkit-animation:throb 2s;
       -moz-animation:throb 2s;
        -ms-animation:throb 2s;
         -o-animation:throb 2s;
            animation:throb 2s;

    -webkit-animation-iteration-count: infinite;
       -moz-animation-iteration-count: infinite;
        -ms-animation-iteration-count: infinite;
         -o-animation-iteration-count: infinite;
            animation-iteration-count: infinite;


}
@-webkit-keyframes throb { 0% {box-shadow: none;} 20% {box-shadow: 0 0 .5em #2284a1;} 40% {box-shadow: none;}}
   @-moz-keyframes throb { 0% {box-shadow: none;} 20% {box-shadow: 0 0 .5em #2284a1;} 40% {box-shadow: none;}}
    @-ms-keyframes throb { 0% {box-shadow: none;} 20% {box-shadow: 0 0 .5em #2284a1;} 40% {box-shadow: none;}}
     @-o-keyframes throb { 0% {box-shadow: none;} 20% {box-shadow: 0 0 .5em #2284a1;} 40% {box-shadow: none;}}
        @keyframes throb { 0% {box-shadow: none;} 20% {box-shadow: 0 0 .5em #2284a1;} 40% {box-shadow: none;}}