RcsbFvStyle.module.scss 678 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .fullScreen {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. height: 100%;
  6. width: 100%;
  7. overflow: auto;
  8. }
  9. .rcsbFvMain * {
  10. box-sizing: border-box;
  11. }
  12. .rcsbFvMain {
  13. width: 100%;
  14. height: 100%;
  15. background-color: #fff;
  16. z-index: 10;
  17. display: flex;
  18. flex-wrap: nowrap;
  19. flex-direction: row-reverse;
  20. }
  21. .rcsbFvCell {
  22. }
  23. .rcsbFvSubtitle {
  24. font-size: 16px;
  25. font-family: inherit;
  26. line-height: 1.1;
  27. color: inherit;
  28. margin-bottom: 15px;
  29. }
  30. .rcsbFvTitle{
  31. font-size: 24px;
  32. font-family: inherit;
  33. font-weight: bold;
  34. line-height: 1.1;
  35. color: inherit;
  36. margin-bottom: 15px;
  37. }
  38. .rcsbFvClose {
  39. position: absolute;
  40. right: 10px;
  41. top:5px;
  42. cursor: pointer;
  43. }