misc.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .molstar-description {
  2. padding: $control-spacing;
  3. font-size: 85%;
  4. background: $default-background;
  5. text-align: center;
  6. //font-style: italic;
  7. -webkit-user-select: none; /* Chrome/Safari */
  8. -moz-user-select: none; /* Firefox */
  9. -ms-user-select: none; /* IE10+ */
  10. /* Rules below not implemented in browsers yet */
  11. -o-user-select: none;
  12. user-select: none;
  13. font-weight: light;
  14. cursor: default;
  15. }
  16. .molstar-description:not(:first-child) {
  17. border-top: 1px solid $control-background;
  18. }
  19. .molstar-color-picker input {
  20. color: black !important;
  21. }
  22. .molstar-no-webgl {
  23. position: absolute;
  24. width: 100%;
  25. height: 100%;
  26. left: 0;
  27. top: 0;
  28. display: table;
  29. text-align: center;
  30. > div {
  31. b {
  32. font-size: 120%;
  33. }
  34. display: table-cell;
  35. vertical-align: middle;
  36. text-align: center;
  37. width: 100%;
  38. height: 100%;
  39. }
  40. }
  41. .molstar-loader-molstar-btn-file {
  42. position: relative;
  43. overflow: hidden;
  44. }
  45. .molstar-loader-molstar-btn-file input[type=file] {
  46. position: absolute;
  47. top: 0;
  48. right: 0;
  49. min-width: 100%;
  50. min-height: 100%;
  51. font-size: 100px;
  52. text-align: right;
  53. filter: alpha(opacity=0);
  54. opacity: 0;
  55. outline: none;
  56. background: white;
  57. cursor: inherit;
  58. display: block;
  59. }