ZadomenSC

css form especies

Nov 26th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.38 KB | None | 0 0
  1. #cabeza {
  2.     text-align: center;
  3.     padding: 50px 20px;
  4.     background-image: url("https://cdn.pixabay.com/photo/2016/12/02/14/21/background-1877877_640.jpg");
  5.     background-size: cover;
  6.     background-position: center;
  7.     color: #ffffff;
  8.     border-radius: 8px;
  9. }
  10.  
  11. #cabeza h1 {
  12.     font-size: 2.5em;
  13.     font-weight: bold;
  14.     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  15. }
  16.  
  17.  
  18. #navbar {
  19.     overflow: visible;
  20.     background-color: #333;
  21. }
  22. #navbar ul {
  23.     display: flex;
  24.     justify-content: center;
  25.     position: sticky;
  26.     list-style: none;
  27.     background-color: #2c3e50;
  28.     padding: 10px 0;
  29.     margin-bottom: 20px;
  30. }
  31.  
  32.  
  33. #navbar ul li {
  34.     margin: 0 15px;
  35. }
  36.  
  37. #navbar ul li a {
  38.     color: #fff;
  39.     text-decoration: none;
  40.     font-weight: bold;
  41. }
  42.  
  43. .sticky {
  44.     position: fixed;
  45.     top: 0;
  46.     width: 100%
  47. }
  48.  
  49. h2 {
  50.     font-size: 2em;
  51.     text-align: center;
  52.     color: #2c3e50;
  53.     margin-bottom: 20px;
  54. }
  55.  
  56. form {
  57.     max-width: 800px;
  58.     margin: 0 auto;
  59.     padding: 20px;
  60.     background-color: #9bd3ff;
  61.     border-radius: 8px;
  62.     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  63. }
  64.  
  65. form div {
  66.     margin-bottom: 20px;
  67. }
  68.  
  69. form label {
  70.     font-size: 1.1em;
  71.     color: #333;
  72.     display: block;
  73.     margin-bottom: 8px;
  74. }
  75. #errors{
  76.     background-color: #ffffff;
  77.     max-width: 280px;
  78.     padding: 10px ;
  79.     color: darkred;
  80.     margin-top: -100px ;
  81. }
  82.  
  83. form textarea {
  84.     height: 150px;
  85.     resize: vertical;
  86. }
  87.  
  88. form .button {
  89.     text-align: center;
  90. }
  91.  
  92. form button {
  93.     padding: 10px 20px;
  94.     background-color: white;
  95.     color: black;
  96.     border: none;
  97.     border-radius: 8px;
  98.     font-size: 1.1em;
  99.     cursor: pointer;
  100. }
  101.  
  102. article {
  103.     background-color: #faffc9;
  104.     padding: 20px;
  105.     margin-top: 40px;
  106.     border-radius: 8px;
  107.     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  108. }
  109.  
  110. article h2 {
  111.     font-size: 1.5em;
  112.     margin-bottom: 10px;
  113. }
  114.  
  115.  
  116. footer {
  117.     text-align: center;
  118.     background-color: #d7ffc0;
  119.     color: #000000;
  120.     padding: 15px 0;
  121.     margin-top: 20px;
  122. }
  123.  
  124. footer h2 {
  125.     font-size: 1.5em;
  126. }
  127.  
  128. footer ul {
  129.     list-style: none;
  130.     display: flex;
  131.     justify-content: center;
  132.     padding: 0;
  133.     margin-top: 10px;
  134. }
  135.  
  136. footer ul li {
  137.     margin: 0 15px;
  138. }
  139.  
  140. footer ul li a {
  141.     color: #000000;
  142.     text-decoration: none;
  143. }
  144.  
  145. footer ul li a:hover {
  146.     color: #3498db;
  147. }
Advertisement
Add Comment
Please, Sign In to add comment