style.css 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .container {
  2. width: 50%;
  3. box-shadow: 0 0 5px black;
  4. margin: 0 auto;
  5. padding: 15px;
  6. padding-top: 50px;
  7. }
  8. .flex-container {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: center;
  12. align-items: flex-end;
  13. }
  14. .flex-block {
  15. width: calc(100%/12);
  16. }
  17. .block-1 {
  18. height: 70px;
  19. background: pink;
  20. }
  21. .block-2 {
  22. height: 50px;
  23. background: purple;
  24. }
  25. .block-3 {
  26. height: 30px;
  27. background: green;
  28. }
  29. .block-4 {
  30. height: 100px;
  31. background: yellow;
  32. }
  33. .block-5 {
  34. height: 90px;
  35. background: orange;
  36. }
  37. .block-6 {
  38. height: 60px;
  39. background: blue;
  40. }
  41. .block-7 {
  42. height: 10px;
  43. background: SeaGreen;
  44. }
  45. .block-8 {
  46. height: 35px;
  47. background: red;
  48. }
  49. section > section {
  50. position: relative;
  51. }
  52. section > section > span {
  53. position: absolute;
  54. left: 30%;
  55. bottom: 100%;
  56. font-size: 20px;
  57. font-weight: bold;
  58. }