BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

debug.scss 693B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Messages */
  2. @mixin message($color) {
  3. .save_message {
  4. padding: 1rem;
  5. width: 50%;
  6. margin: 2em auto;
  7. background: $color;
  8. text-align: center;
  9. color: black;
  10. font-weight: bold;
  11. box-shadow: 2px 2px 10px -5px slategray;
  12. }
  13. }
  14. .error_message {
  15. @include message(#ffcdd2);
  16. }
  17. .save_message {
  18. @include message(#ffe0b2);
  19. }
  20. .elem_error {
  21. border: 2px solid rgba(255, 0, 0, 0.5);
  22. }
  23. /*
  24. * IE doesn't appear to like a simple display:none in our header.
  25. * Random things start fucking up pretty badly.
  26. */
  27. .hidden {
  28. position: absolute;
  29. left: -10000px;
  30. }
  31. input.hidden {
  32. position: absolute;
  33. display: none;
  34. }