index.css 497 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .rel {
  2. position: relative;
  3. }
  4. .rel h3 {
  5. position: absolute;
  6. top: 50%;
  7. left: 50%;
  8. padding: 20px;
  9. transform: translate(-50%, -44%);
  10. /* background-color: #fff; */
  11. z-index: 200;
  12. zoom: 1;
  13. }
  14. fieldset {
  15. padding-top: 50px;
  16. position: relative;
  17. border: 2px solid #DAA569;
  18. border-radius: 10px;
  19. /* background-color: #fff; */
  20. }
  21. fieldset .line {
  22. width: 500px;
  23. text-align: left;
  24. background-color: #ccc;
  25. }
  26. fieldset label {
  27. text-align: left;
  28. }
  29. .yellow {
  30. color: #f7b16b;
  31. }