Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1.   #score-list{
  2.     font-family:Roboto, Calibri, Arial, serif;
  3.     border:1px solid #000;
  4.     a:link: red
  5.   }
  6.  
  7.  #score-list a:link{
  8.     color:#2196F3;
  9.     text-align:center;
  10.     text-shadow:1px 1px 0px #000;
  11.     font-weight:bold;
  12.   }
  13.  
  14.   #score-list td{
  15.     border:1px solid #000;
  16.     padding:7px;
  17.   }
  18.    
  19.   #score-list #title td{
  20.     background:#327a81;
  21.     color:#FFF;
  22.     text-align:center;
  23.     text-shadow:1px 1px 0px #000;
  24.     font-weight:bold;
  25.   }
  26.  
  27.   #score-list #good{
  28.    
  29.     background:linear-gradient(#eee,#ddd);
  30.     color:#327a81;
  31.     text-align:center;
  32.   }
  33.  
  34.   #score-list #good:hover{
  35.     background:#50c399;
  36.   }
  37.  
  38.   #score-list #mid{
  39.     background:linear-gradient(#eee,#ddd);
  40.     color:#327a81;
  41.     text-align:center;
  42.   }
  43.  
  44.   #score-list #mid:hover{
  45.     background:linear-gradient(#d5d5d5,#c5c5c5);
  46.   }
  47.  
  48.   #score-list #bad{
  49.     background:linear-gradient(#eee,#ddd);
  50.     color:#327a81;
  51.     text-align:center;
  52.   }
  53.  
  54.   #score-list #bad:hover{
  55.     background:#fb4771;
  56.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement