You are here

module.component.css in Opigno group manager 3.x

Same filename and directory in other branches
  1. 8 ng/src/app/activities/module/module.component.css
.delete-activity {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

#delete-panel-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 5px 2px #ddd;
  width: 400px;
  max-width: calc(100% - 2rem);
}

activity {
  display: table-row;
}

File

ng/src/app/activities/module/module.component.css
View source
  1. .delete-activity {
  2. position: fixed;
  3. z-index: 100;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. bottom: 0;
  8. background-color: rgba(255, 255, 255, 0.8);
  9. }
  10. #delete-panel-content {
  11. position: absolute;
  12. left: 50%;
  13. top: 50%;
  14. transform: translate(-50%, -50%);
  15. padding: 1rem;
  16. background-color: #fff;
  17. box-shadow: 0 0 5px 2px #ddd;
  18. width: 400px;
  19. max-width: calc(100% - 2rem);
  20. }
  21. activity {
  22. display: table-row;
  23. }