Advertisement
ujiajah1

aset.css / for grabbing my site style

May 27th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.02 KB | None | 0 0
  1.     <style>
  2.     body{
  3.           background: url(debian.png) no-repeat center center fixed;
  4.         -webkit-background-size: cover;
  5.          -moz-background-size: cover;
  6.         -o-background-size: cover;
  7.          background-size: cover;
  8.         background-color: #f1c40f;
  9.         -webkit-animation: color 5s ease-in  0s infinite alternate running;
  10.         -moz-animation: color 5s linear  0s infinite alternate running;
  11.         animation: color 5s linear  0s infinite alternate running;
  12.     }
  13.  
  14. table, th, td {
  15.     border: 1px solid white;
  16.     border-collapse: collapse;
  17.     font-size: 20pt;
  18.     color:#ecf0f1;
  19. }
  20. th, td {
  21.     padding: 10px;
  22. }
  23.  
  24.     /* Animasi + Prefix untuk browser
  25.     @-webkit-keyframes color {
  26.         0% { background-color: #f1c40f; }
  27.         32% { background-color: #e74c3c; }
  28.         55% { background-color: #9b59b6; }
  29.         76% { background-color: #16a085; }
  30.         100% { background-color: #2ecc71; }
  31.     }
  32.     @-moz-keyframes color {
  33.          0% { background-color: #f1c40f; }
  34.         32% { background-color: #e74c3c; }
  35.         55% { background-color: #9b59b6; }
  36.         76% { background-color: #16a085; }
  37.         100% { background-color: #2ecc71; }
  38.     }
  39.     @keyframes color {
  40.       0% { background-color: #f1c40f; }
  41.         32% { background-color: #e74c3c; }
  42.         55% { background-color: #9b59b6; }
  43.         76% { background-color: #16a085; }
  44.         100% { background-color: #2ecc71; }
  45.     } */
  46.     h1{
  47.        margin: 0;
  48.             text-transform: uppercase;
  49.                     font-family: 'halvetica', sans-serif;
  50.                     color: #ecf0f1;
  51.                     font-size: 20pt;
  52.                     text-align: center;
  53.                     line-height: 60px;
  54.                    letter-spacing: 0.2em
  55.     }
  56.  
  57. h4{
  58.        margin: 0;
  59.             text-transform: uppercase;
  60.                     font-family: 'halvetica', sans-serif;
  61.                     color: #ecf0f1;
  62.                     font-size: 20pt;
  63.                     text-align: center;
  64.                     line-height: 60px;
  65.                    letter-spacing: 0.2em
  66.     }
  67.  
  68.    
  69.     p{
  70.         text-align: center;
  71.         color: #ecf0f1;
  72.     }
  73.     a{
  74.         text-decoration: none;
  75.         color: #333;
  76.     }
  77.     </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement