launcher.css 981 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Reset body, html, and div presets. */
  2. body, html, div {
  3. margin: 0px;
  4. padding: 0px;
  5. }
  6. body {
  7. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  8. background-size: cover;
  9. }
  10. #frame_bar {
  11. -webkit-app-region: drag;
  12. background: rgba(1, 2, 1, 0.5);
  13. min-height: 22px;
  14. display: flex;
  15. align-items: center;
  16. }
  17. #frame_btn_dock {
  18. margin-left: 2px;
  19. }
  20. .frame_btn {
  21. height: 12px;
  22. width: 12px;
  23. border-radius: 50%;
  24. border: 0px;
  25. margin-left: 5px;
  26. -webkit-app-region: no-drag !important;
  27. cursor: pointer;
  28. }
  29. .frame_btn:focus {
  30. outline: 0px;
  31. }
  32. #frame_btn_close {
  33. background-color: #e74c32;
  34. }
  35. #frame_btn_close:hover {
  36. background-color: #FF9A8A;
  37. }
  38. #frame_btn_restoredown {
  39. background-color: #fed045;
  40. }
  41. #frame_btn_restoredown:hover {
  42. background-color: #FFE9A9;
  43. }
  44. #frame_btn_minimize {
  45. background-color: #96e734;
  46. }
  47. #frame_btn_minimize:hover {
  48. background-color: #D6FFA6;
  49. }