Advertisement
Kanmu

css find the precious

Oct 22nd, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.47 KB | None | 0 0
  1. *{
  2.     margin: 0px;
  3.     padding: 0px;
  4. }
  5.  
  6. nav{
  7.     color:white;
  8.     background-color: #4F4F4F;
  9. }
  10.  
  11. li{
  12.     padding: 10px;
  13.     list-style: none;
  14. }
  15.  
  16. ul{
  17.     display: flex;
  18. }
  19.  
  20. span{
  21.     font-size: 20px;
  22. }
  23.  
  24. section h2{
  25.     text-align: center;
  26. }
  27.  
  28.  
  29.  
  30. /*  FORMULAIRE */
  31.  
  32. form h2{
  33.     text-align: left;
  34.     margin-left: 20px;
  35.     margin-bottom: 30px;
  36. }
  37. form{
  38.     text-align: center;
  39.     display: block;
  40. }
  41.  
  42. input, textarea{
  43.     margin-bottom: 10px;
  44.     width: 80%;
  45. }
  46.  
  47. textarea{
  48.     height: 100px;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement