Advertisement
noam76

style.css

May 14th, 2023
1,260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. /* <link rel="stylesheet" type="text/css" href="style.css"> */
  2.  
  3. /* Styles pour le corps de la page */
  4. body {
  5.   font-family: Arial, sans-serif;
  6.   font-size: 16px;
  7.   line-height: 1.5;
  8.   margin: 0;
  9.   padding: 0;
  10. }
  11.  
  12. /* Styles pour le menu de navigation */
  13. /* Styles pour le menu de navigation */
  14. .menu-container {
  15.   position: fixed;
  16.   right: 0;
  17.   width: 200px;
  18.   height: 100%;
  19. }
  20.  
  21. .menu {
  22.   background-color: #f1f1f1;
  23.   padding: 20px;
  24. }
  25.  
  26. nav {
  27.   background-color: #333;
  28.   color: #fff;
  29.   display: flex;
  30.   justify-content: space-between;
  31.   padding: 10px;
  32. }
  33.  
  34. nav a {
  35.   color: #fff;
  36.   text-decoration: none;
  37.   padding: 10px;
  38. }
  39.  
  40. nav a:hover {
  41.   background-color: #555;
  42. }
  43.  
  44. /* Styles pour les formulaires */
  45. form,
  46. .form {
  47.   display: flex;
  48.   flex-direction: column;
  49.   margin: 20px;
  50. }
  51.  
  52. label {
  53.   font-weight: bold;
  54.   margin-bottom: 10px;
  55. }
  56.  
  57. input[type="text"],
  58. input[type="email"],
  59. input[type="password"],
  60. input[type="date"],
  61. select,
  62. textarea {
  63.   padding: 10px;
  64.   margin-bottom: 20px;
  65.   border: 1px solid #ccc;
  66.   border-radius: 5px;
  67.   font-size: 16px;
  68. }
  69.  
  70. input[type="submit"],
  71. button,
  72. .form input[type="submit"],
  73. .form button {
  74.   background-color: #333;
  75.   color: #fff;
  76.   border: none;
  77.   border-radius: 5px;
  78.   padding: 10px 20px;
  79.   font-size: 16px;
  80.   cursor: pointer;
  81. }
  82.  
  83. input[type="submit"]:hover,
  84. button:hover,
  85. .form input[type="submit"]:hover,
  86. .form button:hover {
  87.   background-color: #555;
  88. }
  89.  
  90. /* Styles pour les tableaux */
  91. table {
  92.   border-collapse: collapse;
  93.   width: 100%;
  94.   margin: 20px;
  95. }
  96.  
  97. th,
  98. td {
  99.   padding: 10px;
  100.   text-align: left;
  101.   border: 1px solid #ccc;
  102. }
  103.  
  104. th {
  105.   background-color: #333;
  106.   color: #fff;
  107. }
  108.  
  109. /* Styles pour les boutons d'action */
  110. .action-btn {
  111.   background-color: #333;
  112.   color: #fff;
  113.   border: none;
  114.   border-radius: 5px;
  115.   padding: 10px 20px;
  116.   font-size: 16px;
  117.   cursor: pointer;
  118. }
  119.  
  120. .action-btn:hover {
  121.   background-color: #555;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement