style-1.css 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* lesson 3 */
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body {
  6. height: 4000px;
  7. }
  8. div {
  9. font-size: 25px;
  10. text-align: center;
  11. min-height: 300px;
  12. margin-bottom: 50px;
  13. padding: 30px;
  14. vertical-align: middle;
  15. color: #fff;
  16. }
  17. .fixed {
  18. background: rgb(228, 62, 95);
  19. border: 10px solid rgb(90, 4, 21);
  20. border-radius: 30%;
  21. position: fixed;
  22. top: 100px;
  23. /* left: calc(50% - 70px); */
  24. left: 50%;
  25. transform: translate(-50%);
  26. z-index: 1;
  27. display: none;
  28. }
  29. .absolute {
  30. background: rgb(20, 220, 37);
  31. border: 5px solid rgb(133, 6, 31);
  32. /* position: absolute;
  33. right: 50%;
  34. bottom: 100px; */
  35. }
  36. .relativ {
  37. background: rgb(173, 20, 220);
  38. border: 7px dotted rgb(41, 4, 63);
  39. position: relative;
  40. top: 20px;
  41. left: 30px;
  42. }
  43. .relativ-child {
  44. background: rgb(220, 110, 20);
  45. border: 5px solid rgb(114, 59, 7);
  46. position: absolute;
  47. top: 5px;
  48. right: 5px;
  49. }