_delete-confirmation.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. @import "globals";
  2. .delete-confirmation {
  3. #content > h1 + p + h2 + ul {
  4. background: $warning-color;
  5. color: $warning-text-color;
  6. border-radius: 4px;
  7. padding: 20px;
  8. list-style-type: none;
  9. margin: 0;
  10. li {
  11. list-style: none;
  12. line-height: 1.8;
  13. }
  14. }
  15. #content > ul:nth-of-type(2), #content > h1 + p + ul {
  16. background: $content-background-color;
  17. border-radius: 4px;
  18. box-shadow: 0 2px 0 0 $content-border2-color;
  19. &, ul {
  20. list-style-type: none;
  21. margin: 0;
  22. padding: 0;
  23. li {
  24. list-style: disc;
  25. line-height: 1.8;
  26. }
  27. }
  28. ul {
  29. margin-left: 20px;
  30. }
  31. > li {
  32. padding: 8px;
  33. border-bottom: 1px solid $content-border-color;
  34. font-size: 13px;
  35. list-style: none;
  36. &:last-child {
  37. border-bottom: 0;
  38. }
  39. }
  40. }
  41. #content form {
  42. margin-top: 20px;
  43. input[type="submit"] {
  44. background-color: $danger-button-background-color;
  45. color: $danger-button-text-color;
  46. font-size: 12px;
  47. font-weight: lighter;
  48. padding: 0 20px;
  49. text-transform: uppercase;
  50. margin-bottom: 5px;
  51. @include for-mobile {
  52. display: block;
  53. width: 100%;
  54. }
  55. &:hover, &:focus {
  56. background-color: $button-hover-background-color;
  57. color: $button-hover-text-color;
  58. }
  59. &:active {
  60. background-color: $button-active-background-color;
  61. color: $button-active-text-color;
  62. }
  63. }
  64. .button {
  65. vertical-align: middle;
  66. margin-left: 10px;
  67. margin-bottom: 5px;
  68. box-sizing: border-box;
  69. @include for-mobile {
  70. margin-left: 0;
  71. display: block;
  72. width: 100%;
  73. }
  74. }
  75. }
  76. }