@font-face { font-family: BLKCHCRY; src: url("../fonts/BLKCHCRY.TTF"); } body { background: rgba(191,89,255, 0.9); } 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-staff.png"), auto; height:710px; width:440px; } #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:''; } } } .wand { cursor: url("../images/magic-staff.png"), auto; } #yellow-bottle { background-image: url("../images/bottle.png" ); width: 49px; height: 91px; background-repeat: no-repeat; } #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" ); } /*responsive/*--------------------------*/ .example { padding: 20px; color: white; } /* Extra small devices (phones, 600px and down) */ @media only screen and (max-width: 600px) { #cardtest { height:323px; width:200px; } } /* Small devices (portrait tablets and large phones, 600px and up) */ @media only screen and (min-width: 600px) { .example {background: green;} } /* Medium devices (landscape tablets, 768px and up) */ @media only screen and (min-device-width: 481px) and (max-device-width: 1440px) and (orientation:landscape) { #cardtest { height:645px; width:400px; } } /* Large devices (laptops/desktops, 992px and up) */ @media only screen and (min-width: 992px) { .example {background: orange;} } /* Extra large devices (large laptops and desktops, 1200px and up) */ @media only screen and (min-width: 1200px) { .example {background: pink;} } /*--------------------------responsive*/