﻿.photoLinkStyle
{
    text-decoration:none;
}

.smallPhotoStyle
{
    border-color:red;
    border-radius:5px;
    border-style:solid;
    border-width:2px;
    margin:5px;
}

.smallPhotoStyle:hover
{
    -ms-transform:scale(1.1);
    transform:scale(1.1);
    transition:all 0.2s linear;
    -webkit-transform:scale(1.1);
    -webkit-transition:all 0.2s linear; 
}

@media only screen and (max-width:400px) {
    /*phone or below*/
    .smallPhotoStyle {
        max-width:300px;
    }
}