YouTubeCode

Twidget CSS

Jan 5th, 2022
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.23 KB | None | 0 0
  1. /*------------------------- GOOGLE FONT DATA CALLS ------------------------*/
  2. /*Get The Google Fonts = https://fonts.google.com/*/
  3. @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Pushster&display=swap');
  4.  
  5.  
  6.  
  7.  
  8. /*------------------------- CHANNEL IMAGE ON LEFT ------------------------*/
  9. /*this shows channel icon*/
  10. .pfp {
  11.     /*border: 3px solid #f0f;   */
  12.     border-radius: 10px;
  13.     margin-left: 30px!important;
  14.     animation: channel-icon 3s ease;
  15. }
  16. /*this shows the logo of youtube, facebook, or Twitch*/
  17. .pflogo {  
  18.     display: none!important;
  19. }
  20.  
  21. /*------------------------- THE TEXT NAME AND MSSG ------------------------*/
  22. /* Text Drop Shadow Maker = https://html-css-js.com/css/generator/text-shadow/*/
  23. /* Hex color picker = https://redketchup.io/color-picker */
  24.  
  25. .name {
  26.    
  27.     /*text-transform: uppercase;*/
  28.     font-size: 40px !important;
  29.     color: yellow;
  30.     /*padding: 0px 0px 0px 0px;*/
  31.     text-shadow: 5px 3px 0px #000000;
  32.      animation: animated-name 3s ease;
  33. }
  34.  
  35. .message {
  36.    
  37.     /*text-transform: uppercase;*/
  38.     font-size: 20px !important;
  39.     color: #0f0;
  40.     padding: 0px 0px 5px 0px;
  41.     text-shadow: -3px 0px 4px #000000;
  42.      animation: animated-message 2s ease;
  43. }
  44.  
  45.  
  46. /*------------------------- CONTAINER / BACKGROUND ------------------------*/
  47. /* Color picker with transparency = https://hslpicker.com/ */
  48. /* Gradient color maker  = https://www.colorzilla.com/gradient-editor/  */
  49. /* Background Image maker = https://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size*/
  50. /* Box Drop Shadow Maker = https://html-css-js.com/css/generator/box-shadow/  */
  51. /*background-image:url('w3css.gif');*/
  52. /*background-repeat:no-repeat;*/
  53. /*background-size:100% 100%;*/
  54.  
  55. .simpleContainer {
  56.     margin: 30px;
  57.     padding: 1px !important;
  58.     border-left: 0px solid #000;
  59.     /*border: 11px solid #000;*/
  60.     /*background: transparent;*/
  61.     border-radius: 30px;
  62.     background-image:url('https://files.catbox.moe/r4c98a.gif');
  63.     background-repeat:no-repeat;
  64.     background-size:100% 100%;
  65.     animation: animated-container 1s ease;
  66. }
  67.  
  68.  
  69.  
  70.  
  71. /*------------------------- ANIMATIONS ------------------------*/
  72. /* Click here to get all the prebuilt css for all the cool animations = https://files.catbox.moe/d8edna.txt */
  73.  
  74. @keyframes animated-container {
  75.     0% {
  76.         -webkit-transform: perspective(400px) rotateX(90deg);
  77.         transform: perspective(400px) rotateX(90deg);
  78.         -webkit-animation-timing-function: ease-in;
  79.         animation-timing-function: ease-in;
  80.         opacity: 0
  81.     }
  82.  
  83.     40% {
  84.         -webkit-transform: perspective(400px) rotateX(-20deg);
  85.         transform: perspective(400px) rotateX(-20deg);
  86.         -webkit-animation-timing-function: ease-in;
  87.         animation-timing-function: ease-in
  88.     }
  89.  
  90.     60% {
  91.         -webkit-transform: perspective(400px) rotateX(10deg);
  92.         transform: perspective(400px) rotateX(10deg);
  93.         opacity: 1
  94.     }
  95.  
  96.     80% {
  97.         -webkit-transform: perspective(400px) rotateX(-5deg);
  98.         transform: perspective(400px) rotateX(-5deg)
  99.     }
  100.  
  101.     to {
  102.         -webkit-transform: perspective(400px);
  103.         transform: perspective(400px)
  104.     }
  105. }
  106.  
  107.  
  108. @keyframes channel-icon {
  109.  
  110.     0%,
  111.     20%,
  112.     40%,
  113.     60%,
  114.     80%,
  115.     to {
  116.         -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  117.         animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  118.     }
  119.  
  120.     0% {
  121.         opacity: 0;
  122.         -webkit-transform: scale3d(.3, .3, .3);
  123.         transform: scale3d(.3, .3, .3)
  124.     }
  125.  
  126.     20% {
  127.         -webkit-transform: scale3d(1.1, 1.1, 1.1);
  128.         transform: scale3d(1.1, 1.1, 1.1)
  129.     }
  130.  
  131.     40% {
  132.         -webkit-transform: scale3d(.9, .9, .9);
  133.         transform: scale3d(.9, .9, .9)
  134.     }
  135.  
  136.     60% {
  137.         opacity: 1;
  138.         -webkit-transform: scale3d(1.03, 1.03, 1.03);
  139.         transform: scale3d(1.03, 1.03, 1.03)
  140.     }
  141.  
  142.     80% {
  143.         -webkit-transform: scale3d(.97, .97, .97);
  144.         transform: scale3d(.97, .97, .97)
  145.     }
  146.  
  147.     to {
  148.         opacity: 1;
  149.         -webkit-transform: scaleX(1);
  150.         transform: scaleX(1)
  151.     }
  152. }
  153.  
  154.  
  155.  
  156. @keyframes animated-name {
  157.     0% {
  158.         -webkit-transform: perspective(400px) rotateX(90deg);
  159.         transform: perspective(400px) rotateX(90deg);
  160.         -webkit-animation-timing-function: ease-in;
  161.         animation-timing-function: ease-in;
  162.        
  163.     }
  164.  
  165.     40% {
  166.         -webkit-transform: perspective(400px) rotateX(-20deg);
  167.         transform: perspective(400px) rotateX(-20deg);
  168.         -webkit-animation-timing-function: ease-in;
  169.         animation-timing-function: ease-in
  170.     }
  171.  
  172.     60% {
  173.         -webkit-transform: perspective(400px) rotateX(10deg);
  174.         transform: perspective(400px) rotateX(10deg);
  175.        
  176.     }
  177.  
  178.     80% {
  179.         -webkit-transform: perspective(400px) rotateX(-5deg);
  180.         transform: perspective(400px) rotateX(-5deg)
  181.     }
  182.  
  183.     to {
  184.         -webkit-transform: perspective(400px);
  185.         transform: perspective(400px)
  186.     }
  187. }
  188. @keyframes animated-message{
  189.     0% {
  190.         opacity: 0;
  191.         -webkit-transform: translate3d(100%, 0, 0);
  192.         transform: translate3d(100%, 0, 0)
  193.     }
  194.  
  195.     to {
  196.         opacity: 1;
  197.         -webkit-transform: translateZ(0);
  198.         transform: translateZ(0)
  199.     }
  200. }
Add Comment
Please, Sign In to add comment