Advertisement
shutdown57

Style JavCode Shell

Oct 17th, 2017
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.64 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Asap');
  2. *{
  3.     padding: 0;
  4.     margin: 0;
  5.     font-family: asap,arial;
  6.     font-size: 98%;
  7. }
  8. body{
  9.     background: #fff;
  10.     font-family: arial;
  11.     color: gray;
  12. }
  13. .table-javcode{
  14.     margin: 0 auto;
  15.     border: 2px solid #333;
  16.     width:98%;
  17.     margin-top:3%;
  18.     border-collapse: collapse;
  19. }
  20. .table-javcode tr{
  21.     background: #eee;
  22. }
  23. .table-javcode tr:nth-child(even){
  24.     background: #fff;
  25. }
  26. .table-javcode tr:hover,.table-javcode tr:nth-child(even):hover,.table-javcode tr:hover a{
  27.     background: #999;
  28.     color: #fff;
  29. }
  30. a{
  31.     color:grey;
  32.     text-decoration: none;
  33. }
  34. a:hover{
  35.     text-decoration: underline;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement