Guest User

My CSS

a guest
Jun 1st, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.77 KB | None | 0 0
  1. #name {
  2.     color: white
  3. }
  4.  
  5. #h4 {
  6.         color: white
  7. }
  8.  
  9. @keyframes example {
  10.   7%    {opacity: 0.1;}
  11.   80% {opacity: 1.0;}
  12.   100% {opacity: .1;}
  13. }
  14. body{
  15.   background-image: url("https://cutewallpaper.org/21/windows-98-clouds/Windows-98-Plus-Wallpapers-57+-images-.jpg");
  16.   background-attachment: fixed
  17. }
  18.  
  19.  
  20. .blurbs, #top, #box, .box, #header, #hSub, button {
  21.   background-color: white;
  22.   color: black;
  23.   padding-right: 2px;
  24.   padding-left: 3px;
  25.   padding-top: 3px;
  26.   padding-bottom: 2px;
  27.   blox-shadow: 1px 0 #000,0 1px #000,1px 1px #000,inset 1px 1px #fff,0 0 150px 1px rgba(255,0,255,.5);
  28.   box-shadow: 1px 0 #000, 0 1px #000, 1px 1px #000, inset 1px 1px #fff;
  29.   background-color: silver;
  30.   border-right: 1px solid gray;
  31.   border-bottom: 1px solid gray;
  32.   color: #000;
  33. }
  34.  
  35. .rightHead, .boxHead {
  36.   background: linear-gradient(135deg,#000178 0,#1180D1 100%);
  37.   color: #fff;
  38.   font-weight: none;
  39. }
  40.  
  41.  
  42. @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
  43. @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
  44. @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
  45.  
  46.  
  47.  
  48. @keyframes shake {
  49.   10%, 90% {
  50.     transform: translate3d(-1px, 0, 0);
  51.   }
  52.  
  53.   20%, 80% {
  54.     transform: translate3d(6px, 0, 0);
  55.   }
  56.  
  57.   30%, 50%, 70% {
  58.     transform: translate3d(-6px, 0, 0);
  59.   }
  60.  
  61.   40%, 60% {
  62.     transform: translate3d(6px, 0, 0);
  63.   }
  64. }
  65.  
  66. .fwiendFace {
  67.   background: url(https://66.media.tumblr.com/1e526ee434f94d0e0faa94eb250aaf8b/tumblr_o1rzpey14q1v1b8nao4_250.gif) no-repeat;
  68.   height: 130px;
  69.   background-size: 64px;
  70.   background-position: center;
  71. }
  72.  
  73. .fwiendFace img {
  74.   opacity: 0.1;
  75. }
  76.  
  77.  
  78. .url.box a {
  79.   display: none;
  80. }
  81.  
  82. .url.box {
  83.   animation: bootAndClippy 3s steps(1) none;
  84.   animation-fill-mode: forwards;
  85. }
  86.  
  87. @keyframes bootAndClippy {
  88.   from {
  89.     background: url(https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/d1ebab8b-2b0b-4d87-a313-481d83d85afa/d8vvnwm-961aa00d-a7de-4e2f-9c0f-4fc195455663.gif?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2QxZWJhYjhiLTJiMGItNGQ4Ny1hMzEzLTQ4MWQ4M2Q4NWFmYVwvZDh2dm53bS05NjFhYTAwZC1hN2RlLTRlMmYtOWMwZi00ZmMxOTU0NTU2NjMuZ2lmIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.c11TQgmL9M3yIjWOyORGPBBSkJWTU59ParTbSDtRXYI) #000;
  90.     background-position: center;
  91.     background-size: contain;
  92.     background-repeat: no-repeat;
  93.     position: fixed;
  94.     right: 0;
  95.     bottom: 0px;
  96.     top: 0;
  97.     left: 0;
  98.     color: #ffffff00;
  99.     border: none;
  100.     box-shadow: none;
  101.     filter: drop-shadow(8px 9px 15px #00000044);
  102.     z-index: 1000;
  103.   }
  104.  
  105.   to {
  106.     background: url(http://vignette1.wikia.nocookie.net/joke-battles/images/c/cb/Clippy.png/revision/latest?cb=20151209031540) no-repeat;
  107.     background-size: 140px;
  108.     position: fixed;
  109.     right: 0;
  110.     bottom: 0px;
  111.     color: #ffffff00;
  112.     height: 131px;
  113.     width: 150px;
  114.     z-index: 100;
  115.     animation: shake 2s infinite;
  116.     border: none;
  117.     box-shadow: none;
  118.     filter: drop-shadow(8px 9px 15px #00000044);
  119.     z-index: 1000;
  120.   }
  121. }
  122.  
  123. #hSub {
  124.   background-color: #D4D1CC !important;
  125.   border-bottom: 1px solid #ccc !important;
  126.   padding-bottom: 8px !important;
  127. }
  128.  
  129. #hSub a {
  130.   color: #000;
  131. }
  132.  
  133.  
  134. .tableRight {
  135.   word-break: break-word !important;
  136. }
  137. /* Start http://www.cursors-4u.com */ * {cursor: url(http://cur.cursors-4u.net/sports/spo-1/spo16.ani), url(http://cur.cursors-4u.net/sports/spo-1/spo16.png), auto !important;} /* End http://www.cursors-4u.com */
  138.  
  139. .short, .url.box, .fwiendCounter > b, #viewFriends, .blogCard, a > b {
  140.     color: white;
  141.     border-color: black;
  142.     border: 3px solid #000;
Add Comment
Please, Sign In to add comment