mirror of
https://github.com/MillironX/4h-record-books.git
synced 2024-11-01 07:03:09 +00:00
68 lines
1.5 KiB
CSS
68 lines
1.5 KiB
CSS
|
@charset "utf-8";
|
||
|
/* CSS Document */
|
||
|
.background-grid {
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
background-size: cover;
|
||
|
min-height: 150px;
|
||
|
}
|
||
|
|
||
|
.background-transparent {
|
||
|
background-color: #FFFFFF99;
|
||
|
}
|
||
|
.background-cover {
|
||
|
background-image: url(../img/Newnotebookandtexturewoodencoverwithpencil.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-1 {
|
||
|
background-image: url(../img/Close-upofaveryniceyoungawardwinnercow.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-2 {
|
||
|
background-image: url(../img/winner.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-3 {
|
||
|
background-image: url(../img/Manmakingspeech.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-4 {
|
||
|
background-image: url(../img/Teamofvolunteerspickinguplitterinpark.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-5 {
|
||
|
background-image: url(../img/OldFashionWhiteChurchwithaSteeple.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-6 {
|
||
|
background-image: url(../img/Oldscrollpaperonwoodenbackground.jpg);
|
||
|
}
|
||
|
|
||
|
.background-sec-7 {
|
||
|
background-image: url(../img/Prettywomanisaproffessionalphotographerwithdslrcamera.jpg);
|
||
|
}
|
||
|
|
||
|
.float-left {
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
/*From https://stackoverflow.com/questions/11552380/how-to-automatically-crop-and-center-an-image*/
|
||
|
.center-cropped {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
background-position: center center;
|
||
|
background-repeat: no-repeat;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
/* Set the image to fill its parent and make transparent */
|
||
|
.center-cropped img {
|
||
|
min-height: 100%;
|
||
|
min-width: 100%;
|
||
|
/* IE 8 */
|
||
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
||
|
/* IE 5-7 */
|
||
|
filter: alpha(opacity=0);
|
||
|
/* modern browsers */
|
||
|
opacity: 0;
|
||
|
}
|