html, body
{
height: 100%;
padding: 0px;
margin: 0px;
font-size: 14px;
}
.centered
{
margin-left: auto;
margin-right: auto;
}
.theme_snow
{
font-family: arial;
background: rgb(0, 0, 100);
.card
{
margin-top: 10px;
width: 600px;
height: 650px;
padding: 2em;
border-radius: 10px;
.centered;
background: rgba(255, 255, 255, 0.5);
}
.image
{
width: 250px;
height: 250px;
border-radius: 50%;
margin-bottom: 10px;
background-image: url(../img/snow.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
.centered;
}
.greeting
{
width: 100%;
height: 350px;
color: rgb(255, 255, 255);
}
}
.theme_food
{
font-family: verdana;
background: rgb(150, 0, 0);
.card
{
margin-top: 10px;
width: 800px;
height: 600px;
padding: 1em;
.centered;
background: rgb(200, 200, 100);
box-shadow: 10px 10px rgba(0, 0, 0, 0.5);
}
.image
{
width: 50%;
height: 100%;
float: left;
background-image: url(../img/food.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.greeting
{
width: 45%;
height: 100%;
float: right;
}
}
.theme_nativity
{
font-family: georgia;
background: rgb(150, 100, 50);
.card
{
margin-top: 50px;
width: 800px;
height: 600px;
.centered;
border: 1em solid rgb(50, 0, 0);
}
.image
{
width: 800px;
height: 600px;
position: absolute;
background-image: url(../img/nativity.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
h1
{
font-style: italic;
font-size: 1.5em;
text-align: center;
}
.greeting
{
width: 400px;
height: 300px;
position: absolute;
margin-left: 200px;
margin-top: 150px;
padding: 1em;
background-color: rgba(0, 0, 0, 0.8);
color: rgb(255, 255, 255);
border-radius: 5px;
}
}