common.scss 431 B

123456789101112131415161718192021222324252627
  1. div.dt-button-info {
  2. position: fixed;
  3. top: 50%;
  4. left: 50%;
  5. width: 400px;
  6. margin-top: -100px;
  7. margin-left: -200px;
  8. background-color: white;
  9. border: 2px solid #111;
  10. box-shadow: 3px 3px 8px rgba( 0, 0, 0, 0.3);
  11. border-radius: 3px;
  12. text-align: center;
  13. z-index: 21;
  14. h2 {
  15. padding: 0.5em;
  16. margin: 0;
  17. font-weight: normal;
  18. border-bottom: 1px solid #ddd;
  19. background-color: #f3f3f3;
  20. }
  21. > div {
  22. padding: 1em;
  23. }
  24. }