Advertisement
Guest User

tesdwadwa

a guest
Apr 10th, 2020
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.96 KB | None | 0 0
  1. body {
  2.   background-color: #1d1e22!important;
  3. }
  4.  
  5. .text-shadow {
  6.     text-shadow: 0px 0px 5px #3c3c3c;
  7. }
  8. .socials a:hover {
  9.     color: orange;
  10.     transition: 300ms;
  11. }
  12. .back-to-top {
  13.     position: fixed;
  14.     display: none;
  15.     width: 40px;
  16.     height: 40px;
  17.     right: 15px;
  18.     bottom: 15px;
  19.     font-size: 20px;
  20.     line-height: 33px;
  21.     border-radius: 50%;
  22.     cursor: pointer;
  23.     z-index: 999;
  24. }
  25.  
  26. .zombielandhome {
  27.     background-color: #fff!important;
  28.     background-image: url(https://cdn.discordapp.com/attachments/676150630829785099/692399273525903520/lovalova.png)!important;
  29.     background-repeat: no-repeat, repeat;
  30.     background-position:center;
  31.     max-width: 100%;
  32.     max-height: 100%;
  33.     background-size: cover;
  34.     position:relative;
  35. }
  36.  
  37. .bg-overlay {
  38.   background-image: url(http://dev-solutions.net/download/over.png);
  39.   background-repeat: repeat;
  40.   width: 100%;
  41.   height: 100%;
  42.   padding: 150px 15%;
  43.   z-index: 3;
  44.   position:absolute;
  45.   top:0;
  46.   left:0;
  47. }
  48.  
  49. .bg-dark {
  50.   background-color: #1d1e22!important;
  51.   padding-left: 15%;
  52.   padding-right: 15%;
  53.   z-index: 9;
  54. }
  55.  
  56. .bg-dark a {
  57.   color: white!important;
  58. }
  59.  
  60. .bg-primary {
  61.   background-color: #1d1e22!important;
  62. }
  63.  
  64. p {
  65.   color: white;
  66. }
  67.  
  68. h2 {
  69.   color: white;
  70. }
  71. /*--------------------------------------------------------------
  72. #   A N I M A T I O N S
  73. --------------------------------------------------------------*/
  74. .butwa {
  75.   animation: butwa 300ms linear;
  76. }
  77. @keyframes butwa{
  78.     0%{
  79.         -webkit-transform: scale(1);
  80.         transform: scale(1);
  81.         opacity: 0;
  82.     }
  83.     1% {
  84.         -webkit-transform: scale(.5);
  85.         transform: scale(.5);
  86.     }
  87.     45% {
  88.         -webkit-transform: scale(1.05);
  89.         transform: scale(1.05);
  90.     }
  91.     80% {
  92.         -webkit-transform: scale(.95);
  93.         transform: scale(.95);
  94.     }
  95.     100% {
  96.         -webkit-transform: scale(1);
  97.         transform: scale(1);
  98.         opacity: 1;
  99.     }
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement