Files
website/css/custom.css
2015-01-17 22:09:54 +00:00

57 lines
976 B
CSS

.icon {
width: 40px;
}
.center {
margin-left: auto;
margin-right: auto;
}
#columnwrapper {
display: flex;
}
#leftcolumn {
flex: 1;
width: 50%;
float: left
}
#rightcolumn {
flex: 1;
height: auto;
width: 50%;
float: right
}
#background {
background-image: url("/images/art/back.jpeg");
background-attachment: fixed;
}
#backgroundtwo {
background-image: url("/images/art/back2.jpg");
background-attachment: fixed;
background-repeat: repeat;
}
#backgroundthree {
background-image: radial-gradient(circle, #E6E1C7, #D64B12);
}
.shadow {
box-shadow: 10px 10px 10px #1C1C1C;
}
.rounded {
border-radius: 3px;
}
.padded {
padding: 20px;
}
.bordered {
border: 2px solid #000;
}
.photothumb {
width: 180px;
height: 140px;
}
.col-centered {
display: inline-block;
float: none;
/* reset the text-align */
text-align: left;
/* inline-block space fix */
margin-right: -4px;
}