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.

134 lines
2.2 KiB
CSS

@font-face {
font-family: BLKCHCRY;
src: url("../fonts/BLKCHCRY.TTF");
}
body {
background: #3572FF;
}
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;
cursor: url("../images/magic-stuff.svg"), auto;
}
#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;
}
#angryaudio {
width: 250px;
height: 40px;
}
.btn{
display: inline-block;
padding-left: 5px;
padding-right: 20px;
padding-top: 7px;
padding-bottom: 3px;
background: #9fe2bf;
margin-bottom: 5px;
margin-left: 0px;
border-radius: 5px;
font-size: 21px;
@include transition(box-shadow .25s ease);
&:after{
content:'';
display:inline-block;
color: #94a657;
background:#fff;
padding:3px;
border-radius: 50px;
height:20px;
width:20px;
margin-left:8px;
padding-left: 4.5px;
padding-right:1.5px;
}
&.playing{
&:after{
padding:3px;
content:'';
}
}
}
#yellow-bottle {
background-image: url("../images/bottle-white.svg" );
background-repeat: no-repeat;
background-position: center;
background-clip: border-box;
display: block;
width: 80px;
height: 130px;
text-decoration: none;
cursor: pointer;
overflow: hidden;
white-space:nowrap;
}
#yellow-bottle:hover {
background-image: url("../images/bottle-yellow.svg" );
}
.video-player:hover {
color: white;
box-shadow: 0 0 30px 15px white;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.25s ease-in;
}