Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. *{
  2.     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  3.     font-size: 20px;
  4. }
  5.  
  6. table{
  7.     border:1px solid #234465;
  8.     padding: 1%;
  9.     margin: 0 auto;
  10.     width: 70%;
  11.     border-radius: 4px;
  12. }
  13. table th{
  14.     text-decoration: underline;
  15.     text-align: center;
  16. }
  17. table tbody td{
  18.     text-align: center;
  19.     border-bottom:1px solid black;
  20.     padding: 0.5%;
  21. }
  22.  
  23. table tbody tr:nth-child(even){
  24.     background-color: #234465;
  25.     color: white
  26. }
  27.  
  28. table tbody tr:nth-child(odd){
  29.     color: #234465;
  30.     border-bottom: 1px solid black;
  31. }
  32.  
  33. table tbody tr:nth-child(odd) button{
  34.     background: #234465;
  35.     color:white;
  36. }
  37.  
  38. table tbody tr:nth-child(even) button{
  39.     background: white;
  40.     color:#234465;
  41. }
  42.  
  43. table tr td:not(:last-child):hover{
  44.     text-decoration: underline;
  45. }
  46.  
  47. table button{
  48.     border: none;
  49.     padding: 5px;
  50.     border-radius: 5px;
  51.     margin-left: 8%;
  52. }
  53.  
  54. table button:hover{
  55.     text-decoration: underline;
  56. }
  57.  
  58. button#loadBooks{
  59.     margin: 0 auto;
  60.     display:block;
  61.     padding:1%;
  62.     margin-top: 1%;
  63.     margin-bottom: 1%;
  64.     border-radius: 4px;
  65. }
  66.  
  67.  
  68. label, input{
  69.     display:block;
  70.     margin: 0 auto;
  71. }
  72.  
  73. form input{
  74.     margin-bottom: 1%;
  75.     width: 25%;
  76. }
  77.  
  78. form{
  79.     display: block;
  80.     margin: 0 auto;
  81.     text-align: center;
  82. }
  83.  
  84. form button{
  85.     margin: 0 auto;
  86.     display:block;
  87.     margin-top: 1%;
  88.     margin-bottom: 1%;
  89.     border-radius: 4px;
  90.     background-color: #234465;
  91.     color:white;
  92.     border: none;
  93.     padding: 0.5%;
  94. }
  95.  
  96. .inputError {
  97.     border: 2px solid red;
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement