css.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body { padding: 3%; }
  2. form {
  3. width: 93%;
  4. border-radius: 10px;
  5. box-shadow: 10px 10px 20px 10px #a9b0b8;
  6. padding: 3%;
  7. display: flex; flex-direction: column;
  8. gap: 3%;
  9. }
  10. .form_cont { font-size: 14pt; margin-left: 4%; display: grid; gap: 2%; }
  11. .tex { grid-template-columns: 20% 70%; }
  12. .tex > div > input { margin-right: 4%; }
  13. .check { grid-template-columns: 20% 50px; }
  14. form > div > label { text-align: right; }
  15. button {
  16. width: 50%;
  17. margin-left: 25%; margin-top: 2%; padding: 10px;
  18. border-radius: 10px;
  19. }
  20. button:hover { background-color: #a9b0b8; }
  21. .notes {
  22. width: 93%;
  23. display: grid; grid-template-columns: repeat(4, 1fr); gap: 2%;
  24. margin-top: 5%; margin-left: 2%;
  25. }
  26. .note {
  27. border-radius: 10px; border-top-left-radius: 0; border: 3px solid white;
  28. box-shadow: 10px 10px 20px 5px #a9b0b8;
  29. text-align: center;
  30. padding: 20px;
  31. }
  32. .topic_box {
  33. width: 100%;
  34. display: grid; grid-template-columns: 10% 90%;
  35. }
  36. .topic_box > div { padding-top: 15px; font-size: 10pt; }
  37. .topic_box > button { width: 70%; }