Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. body{
  2.     background: black;
  3. }
  4. h1{
  5.     color: white;
  6. }
  7. table{
  8.     border: 3px solid white;
  9.     padding: 10px 30px;
  10.     font-family: consolas;
  11.     background: #000012;
  12.     color: white;
  13.     font-style: italic;
  14.     font-size: 16px;
  15.     border-radius: 10px;
  16.  
  17. }
  18. #submit{
  19.     background: #000009;
  20.     border: 2px solid white;
  21.     border-radius: 4px;
  22.     font-family: consolas;
  23.     font-size: 13px;
  24.     color: white;
  25.     width: 100px;
  26.     height: 25px;
  27.     cursor: pointer;
  28.     font-weight: bold;
  29. }
  30. #submit:hover{
  31.     background: white;
  32.     border: 2px solid white;
  33.     color: red;
  34. }
  35. .border{
  36.     border: 2px solid white;
  37.     color: white;
  38.     border-radius: 4px;
  39.     background: #000010;
  40. }
  41. a .plus{
  42.     text-decoration: none;
  43.     color: white;
  44.     font-style: italic;
  45.     margin-top: 20px;
  46.  
  47. }
  48. .plus:hover{
  49.     color: cyan;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement