Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- i've labeled which code goes for which! follow my tutorial here: https://www.youtube.com/watch?v=k0P3VjGDM68&feature=youtu.be
- ---- for container border ----
- border: 3px double colorcode;
- border-radius:8px;
- ---- for font embed ----
- <style>
- @font-face {
- font-family: baligle;
- src:url(https://dl.dropbox.com/s/xqmnf9qj9tmgqgz/Baligle%20Regular.otf);
- }
- @font-face {
- font-family: cutie;
- src:url(https://dl.dropbox.com/s/xo075bh6tbd4f7d/CP.ttf);
- }
- </style>
- ---- for scroll pop text ----
- <style>
- #text01{
- -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>
- ---- for scrollbox ----
- height: 6em;
- overflow: scroll;
- ---- for mark----
- @font-face {
- font-family: cutie;
- src:url(https://dl.dropbox.com/s/xo075bh6tbd4f7d/CP.ttf);
- }
- font-size: 13px;
- background: #F2BCB1;
- border-radius: 9px;
- border: 1px solid #333333;
- padding-left: 5px;
- padding-right: 5px;
- color: #333333;
- height: 5px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement