style.css 538 B

12345678910111213141516171819202122232425262728293031323334
  1. header{
  2. font-family: sans-serif;
  3. font-size: 30px;
  4. }
  5. #mainContainer {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. padding: 30px 20px;
  10. }
  11. #aside {
  12. flex: 0 0 30%;
  13. }
  14. #aside > a{
  15. display: block;
  16. font-family: sans-serif;
  17. font-size: 16px;
  18. text-decoration: none;
  19. cursor: pointer;
  20. color: black;
  21. margin-bottom: 10px;
  22. }
  23. #aside > a:hover{
  24. text-decoration: underline;
  25. }
  26. main{
  27. flex: 0 0 70%;
  28. }
  29. .item--main{
  30. position: relative;
  31. }
  32. main img{
  33. max-width: 100%;
  34. }