@import url(https://fonts.googleapis.com/css?family=Roboto:100,700,400|Fontdiner+Swanky);

/* Eric Meyer CSS Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
/* CSS reset ends */

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5625;
  font-weight: 400;
  background: #eee;
}

/* the image tage below makes sure the image doesn't break out of the container */
img {
 max-width: 100%;
}

strong {
    font-weight: 700;
}

.wrapper {
    max-width: 940px;
    padding: 85px 10px 10px 10px; 
    margin: 0 auto;
    display: block;
}

#site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
}

h2 {
  font-size: 24px;
  font-family: 'fontdiner Swanky', serif;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #e91e63;
  margin-bottom: 25px;
}

#site-header h1 a {
    font-size: 36px;
    ;ome-height: 60px;
    color: #e91e63;
    font-family: 'fontdiner Swanky', serif;
    text-decoration: none;
    width: 940px;
    margin: 0 auto;
    display: block;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.25); 
}

.none {
 display: none;
}

/* Gallery styling */

#gallery-list {
    
}
    #gallery-list li {
        width: 300px;
        float: left;
        margin-bottom: 25px;
        border-radius: 8px;
        overflow: hidden; 
        border: solid 1px #aaa;
        background: white;
    }

    #gallery-list li a {
        text-decoration: none;
    }

    figure {
        /* the width below is of the images written by php */
        /* this will ensure text wraps */
        /* inherit means the width will be inherited by its parent "gallery-list li a" */
        width: inherit; 
    }

    #gallery-list figure img { 
        display: block;

    }

    #gallery-list figure h3 { 
        color: black;
        padding: 10px;
        border-bottom: solid 1px #ccc;
        border-top: solid 1px #ccc;
    }


    #gallery-list figure p {        
        color: black;
        font-size: 80%;
        padding: 10px;
    }




/* tag link */

#gallery-list aside {
    word-spacing: 5px;
    padding: 10px 10px 0 10px;
    border-bottom: solid 1px #ccc;
    border-top: solid 1px #ccc;
}

#gallery-list aside a {
    word-spacing: normal;
    display: inline-block;
    padding: 0 8px;
    margin-bottom: 10px;
    background: #e91e63;
    color: white;
    border-radius: 12px;
}

/* sub-nav styling */

#gallery-list nav {
    width: 100%;
}

#gallery-list nav a {
    display: inline-block;
    color: #e91e63;
    bprder-bottom: dotted 1px #e91e63;
}


#gallery-list nav {
    padding: 10px;
}

/* drop shadows */
#site-header,
#gallery-list li {
   box-shadow: 0 3px 3px rgba(0,0,0,0.1); 
}

/* FORM STYLING */

form {
    
}

form ol {
    
}

form li {
    margin-bottom: 25px;
    /* eliminate the spacing between the inline block elements */
    word-spacing: -5px;
}

form input[type="text"],
form textarea {
    width: calc(100% - 120px);
    padding: 10px;
    margin: 0;
    box-sizing:  border-box;
    border: solid 1px #e91e63;
    background: white;
}

form label {
    display: inline-block;
    width: 120px;
}

form input, form textarea {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

form input[type="submit"]{
    background: #e91e63;
    color: white;
    font-family: inherit !important;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    float: right;
}

p.error {
    background: #e91e63;
    color: white;
    padding: 10px;
    margin-bottom: 25px;
    word-spacing: normal;
}

/* file input styling "hack" */

.file-browser-container {
    position: relative;
    width: 100px;
    height: 48px;
    overflow: hidden;
    float: left;
}

.file-browser-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-browser-button {
    position: absolute;
    background: #e91e63;
    color: white;
    cursor: pointer;
    padding: 8px 16px;
    display: block;
    top: 0;
    left: 0;
    z-index: 50;
}

/* fontastic.me icons */


@font-face {
  font-family: "gallery-app";
  src:url("../fonts/gallery-app.eot");
  src:url("../fonts/gallery-app.eot?#iefix") format("embedded-opentype"),
    url("../fonts/gallery-app.woff") format("woff"),
    url("../fonts/gallery-app.ttf") format("truetype"),
    url("../fonts/gallery-app.svg#gallery-app") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "gallery-app" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "gallery-app" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tags:before {
  content: "\62";
}
.icon-trash:before {
  content: "\61";
}
