Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. input {
  2.     width: 100%;
  3.     color: grey;
  4. }
  5.  
  6. #text-input {
  7.     width: 98%;
  8.     background: silver;
  9. }
  10.  
  11. th {
  12.     text-align: left;
  13.     padding: 15px;
  14. }
  15.  
  16. input:hover {
  17.     background-color: #f5f5f5;
  18.     color: black;
  19. }
  20.  
  21. table, td{
  22.     border: 1px solid black;
  23.     border-width: medium;
  24. }
  25.  
  26. #user-form{
  27.     float: left;
  28.     margin-left: 45%;
  29.     margin-right: 45%;
  30.     margin-top: 100px;
  31. }
  32.  
  33. body{
  34.     background-color: lightblue;
  35. }
  36.  
  37. h1{
  38.     text-align: center;
  39.     margin-bottom: -100px;
  40. }
  41.  
  42. h1:hover{
  43.     color: red;
  44. }
  45.  
  46. #buteq{
  47.     font-size: 15px;
  48. }
  49.  
  50. form{
  51.     border: 3px solid blue;
  52.     border-radius: 10px;
  53.     background-color: silver;
  54.     color: white;
  55.     position: relative;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement