You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
956 B
CSS

<style type="text/css">
@import "compass/css3";
@font-face {
font-family: BLKCHCRY;
src: url("../fonts/BLKCHCRY.TTF");
}
body {
background: red;
}
p {
font-size: 21px;
font-family: BLKCHCRY;
color: black;
}
.text-left {
max-width: 53em;
margin: 0 auto;
text-align: left;
}
a {
font-size: 21px;
font-family: BLKCHCRY;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
/*text-decoration: underline;*/
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
#cardtest {
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
transition: transform 250ms ease-in-out;
}
#cardtest.rotated {
transform: translate(220px, 0) rotate(90deg) scale(1.6);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.footer {
float: left;
}
.instructions {
max-width: 440px;
}
</style>