style.css 600 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. a.btn {
  2. width: max-content;
  3. }
  4. img {
  5. max-width: 300px;
  6. }
  7. .wrapper {
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. header {
  12. display: flex;
  13. justify-content: space-around;
  14. }
  15. .catBtn {
  16. width: 100%;
  17. min-height: 40px;
  18. margin: 5px;
  19. text-decoration: none;
  20. text-align: start;
  21. padding: 5px;
  22. }
  23. .logBtn {
  24. margin: 10px;
  25. }
  26. #mainContainer {
  27. display: flex;
  28. }
  29. #aside {
  30. width: 30%;
  31. }
  32. #aside > a {
  33. display: block;
  34. }
  35. #main > a {
  36. display: block;
  37. }
  38. #loginContainer {
  39. display: flex;
  40. flex-direction: column;
  41. }