Guest User

Untitled

a guest
Dec 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. body{
  2. font-family:Helvetica, sans-serif;
  3. font-size:50px;
  4. text-align:center;
  5. }
  6.  
  7. p, h1{
  8. padding:0;
  9. margin:20px;
  10. }
  11. h1{
  12. font-size:120px;
  13. }
  14.  
  15. #nthEverthing:nth-letter(odd),
  16. #nthEverthing:nth-letter(even){
  17. display:inline-block;
  18. text-transform:uppercase;
  19. width:80px;
  20. width:80px;
  21. }
  22.  
  23. #nthEverthing:nth-letter(even){
  24. transform: scale(1) skewY(-15deg);
  25.  
  26. }
  27. #nthEverthing:nth-letter(odd){
  28. transform: scale(1) skewY(15deg);
  29. }
  30.  
  31.  
  32. #letters:nth-letter(even),
  33. #letters:nth-letter(odd){
  34. transition:all .4s;
  35. }
  36. #letters:nth-letter(odd):hover,
  37. #letters:nth-letter(even){
  38. color:red;
  39. }
  40.  
  41. #letters:nth-letter(even):hover,
  42. #letters:nth-letter(odd){
  43. color:blue;
  44. }
  45.  
  46. #pseudo:nth-letter(1):before,
  47. #pseudo:nth-letter(1):after{
  48. content:'_'
  49. }
  50.  
  51.  
  52. #flip:nth-letter(2n){
  53. display:inline-block;
  54. margin:10px 10px;
  55. -webkit-transform: rotateY(180deg);
  56. }
  57.  
  58. /* Crazy text animation */
  59. #crazy:nth-letter(2n1){
  60. display:inline-block;
  61. margin:10px 20px;
  62. transition:all .4s;
  63. color:green;
  64. }
  65.  
  66. #crazy:nth-letter(2n1):hover{
  67. transform:rotateZ(180deg);
  68. color:blue;
  69. }
  70.  
  71. #font:nth-letter(n){
  72. font-size:20px;
  73. transition:all 1s linear;
  74. }
  75.  
  76.  
  77. #font:nth-letter(n):hover{
  78. font-size:90px;
  79. }
  80.  
  81.  
  82. #word:nth-word(1){
  83. color:blue;
  84. }
  85.  
  86. #word:nth-word(2){
  87. color:green;
  88. }
  89.  
  90. #word:nth-word(3){
  91. color:red;
  92. }
Add Comment
Please, Sign In to add comment