codes for carrd by lizzy / nia

this was made for my own personal use so theres not much here… sorry….!!!

music player code

!! MUSIC PLAYER TUTORIAL:

  1. upload your audio to dropbox
  2. share → create link → copy link
  3. paste the audio link where it says “<audio id="tune" src="SONG LINK HERE"></audio>”
  4. replace the “www” in the beginning with “dl” and remove “?dl=0” at the end of the link
  5. enjoy!

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>

<!-------MUSIC PLAYER BY GLENTHEMES------->

<script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>

<style>

/*-------MUSIC PLAYER BY GLENTHEMES-------*/

#glenplayer02 {

 position:left;

 bottom:0;margin-bottom:0px;

 left:10;margin-left:20px;

 top:10;margin-top:10px;

 display:flex;

 z-index:99;

}

#glenplayer02 a {text-decoration:none;}

#glenplayer02 > div {

 align-self:left;

 -webkit-align-self:left;

}

.music-controls {

 user-select:none;

 -webkit-user-select:none;

 width:13px;

 font-size:13px;

 cursor:pointer;

}

.playy, .pausee {color:black;} /* color of play & pause buttons */

.pausee {display:none;}

.sonata {

 margin-left:8px;

 color:black; /* color of music note symbol */

}

.labeltext {

 margin-left:15px;

 font-family:times new roman;

 font-style:italic;

 font-align:left;

 font-size:14px;

 color:#000; /* color of song title */

}

</style>

<!-------MUSIC PLAYER BY GLENTHEMES------->

<div id="glenplayer02">

 <div class="music-controls" onclick="songstart();">

 <div class="playy">►</div>

 <div class="pausee">❚❚</div>

 </div>

 <div class="sonata">♫</div>

 <div class="labeltext">SONG NAME HERE</div>

</div><!--end music player-->

<audio id="tune" src="SONG LINK HERE"></audio>

text that overlaps the container ( i hope this makes sense)

 vv add between style tags vv

display: inline-block; line-height: 0em;

make sure to set ur containers vertical padding to 0 :)

upscaling & downscaling text

<h2 id="hi">put ur text here</a></h2>

<style> #hi {-webkit-animation: pop 1s ease-in-out infinite alternate; animation: pop 1s ease-in-out infinite alternate; -moz-animation: pop 1s ease-in-out infinite alternate; }

@keyframes

 pop { from { transform:scale(0.95) } 50% { transform:scale(1) } to { transform:scale(0.95) } } @-webkit-keyframes pop { from { -webkit-transform:scale(0.95) } 50% { -webkit-transform:scale(1) } to { -webkit-transform:scale(0.95) } </style>

text outline

text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000

double outlined container

<style> #container01 {border: 5px double black} </style>

double outlined image

#image01 { border:4px black double; }

If it doesnt fit try this vvv you can edit the width to your liking…

<style>

#image01{

border: 4px double black;

width: 190px;

margin: 0 auto;

</style>

scrolling textbox

<style>

#text01 { overflow:auto;

height:100px;

padding:.5em; margin:left; float: left; }

</style>

blurry hover link

<style>

a:hover {

webkit-filter: blur(1px); /* Chrome, Safari, Opera */

filter: blur(1px);

}

</style>

^^ you can also add a dropshadow to text → center the dropshadow and make it blurry → on the link settings of the text make the hover color #00000000 = boom blurry hover link for FREE. no carrd pro required ^^

custom cursor

<style> body, a, a:hover { cursor:url(URL HERE), auto } </style>

A good tutorial can be found here! I recommend using cursors-4u to find cursors ^_^