style.css 750 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. html {
  2. height: 100%
  3. }
  4. body {
  5. margin: 0;
  6. min-height: 100%;
  7. background-color: #078C84;
  8. background-size: 100% 100%;
  9. }
  10. .center {
  11. margin: 0;
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. -ms-transform: translate(-50%, -50%);
  16. transform: translate(-50%, -50%);
  17. }
  18. .contain {
  19. display:block;
  20. width:100%; height:100%;
  21. object-fit: contain;
  22. }
  23. .stretch {
  24. display:block;
  25. width:100%; height:100%;
  26. }
  27. .cover {
  28. display:block;
  29. width:100%; height:100%;
  30. object-fit: cover;
  31. }
  32. .bottom {
  33. position: absolute;
  34. bottom: 0;
  35. left: 50%;
  36. -ms-transform: translate(-50%, 0);
  37. transform: translate(-50%, 0);
  38. }
  39. .bottomLeft {
  40. position: absolute;
  41. bottom: 0;
  42. left: 0;
  43. }
  44. .bottomRight {
  45. position: absolute;
  46. bottom: 0;
  47. right: 0;
  48. }