Advertisement
Katsiree

message

May 11th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.93 KB | None | 0 0
  1.  .g_ufpositive {
  2.                         width: 90%;
  3.                         margin-bottom: 20px !important;
  4.                         position: relative;
  5.                         overflow: hidden;
  6.                         border-radius: 6px;
  7.                         box-shadow: 5px 5px 15px rgba(0, 140, 158, 0.6);
  8.                         margin: 0 auto;
  9.                         background-color: #f4f5f9;
  10.                     }
  11.  
  12.                     .g_uficon {
  13.                         width: 60px;
  14.                         font-size: 40px;
  15.                         line-height: 50px;
  16.                         text-align: center;
  17.                         text-shadow: 1px 1px rgba(0, 0, 0, 0.12);
  18.                         color: #fff;
  19.                         position: relative;
  20.                         float: left;
  21.                         background-color: #3ac569;
  22.                         border: 1px solid #3ac569;
  23.                     }
  24.  
  25.  
  26.                     .g_ufmessage {
  27.                         font-size: 18px;
  28.                         line-height: 55px;
  29.                         position: absolute;
  30.                         top: 0px;
  31.                         left: 100px;
  32.                         color: #3ac569;
  33.                         font-weight: bold;
  34.                     }
  35.  
  36.  
  37.                     .g_ufalasvegas {
  38.                         border: none;
  39.                         color: rgba(255, 255, 255, 0.6);
  40.                         text-shadow:
  41.                             1px 5px 4px rgba(0, 0, 0, .3),
  42.                             0 0 2px rgba(255, 255, 255, 1),
  43.                             0 0 10px rgba(255, 255, 255, 1),
  44.                             0 0 20px rgba(255, 255, 255, 1),
  45.                             0 0 30px rgba(255, 255, 255, 1),
  46.                             0 0 40px #018799,
  47.                             0 0 70px #018799,
  48.                             0 0 80px #018799,
  49.                             0 0 100px #018799;
  50.  
  51.                     }
  52.  
  53.  
  54.                     .g_ufalasvegas div {
  55.                         animation: blink 1s infinite alternate;
  56.                     }
  57.  
  58.  
  59.                     @keyframes blink {
  60.                         0% {}
  61.  
  62.                         50% {}
  63.  
  64.                         60% {
  65.                             text-shadow:
  66.                                 0 0 2px rgba(255, 255, 255, .1),
  67.                                 0 0 10px rgba(255, 255, 255, .4);
  68.  
  69.                             text-stroke: 2px rgba(255, 255, 255, 0.05);
  70.                         }
  71.  
  72.                         70% {
  73.                             text-shadow:
  74.                                 0 0 2px rgba(255, 255, 255, 1),
  75.                                 0 0 10px rgba(255, 255, 255, 1),
  76.                                 0 0 20px rgba(255, 255, 255, 1),
  77.                                 0 0 30px rgba(255, 255, 255, 1),
  78.                                 0 0 40px #018799,
  79.                                 0 0 70px #018799,
  80.                                 0 0 80px #018799,
  81.                                 0 0 100px #018799;
  82.                         }
  83.  
  84.                         80% {
  85.                             text-shadow:
  86.                                 0 0 2px rgba(255, 255, 255, .1),
  87.                                 0 0 10px rgba(255, 255, 255, .4);
  88.  
  89.                             text-stroke: 2px rgba(255, 255, 255, 0.05);
  90.                         }
  91.  
  92.                         100% {
  93.                             text-shadow:
  94.                                 0 0 2px rgba(255, 255, 255, 1),
  95.                                 0 0 10px rgba(255, 255, 255, 1),
  96.                                 0 0 20px rgba(255, 255, 255, 1),
  97.                                 0 0 30px rgba(255, 255, 255, 1),
  98.                                 0 0 40px #018799,
  99.                                 0 0 70px #018799,
  100.                                 0 0 80px #018799,
  101.                                 0 0 100px #018799;
  102.                         }
  103.                     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement