launcher.css 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. -webkit-user-select: none;
  13. background: rgba(1, 2, 1, 0.5);
  14. min-height: 22px;
  15. display: flex;
  16. align-items: center;
  17. }
  18. #frame_btn_dock {
  19. margin-left: 2px;
  20. }
  21. .frame_btn {
  22. height: 12px;
  23. width: 12px;
  24. border-radius: 50%;
  25. border: 0px;
  26. margin-left: 5px;
  27. -webkit-app-region: no-drag !important;
  28. cursor: pointer;
  29. }
  30. .frame_btn:focus {
  31. outline: 0px;
  32. }
  33. #frame_btn_close {
  34. background-color: #e74c32;
  35. }
  36. #frame_btn_close:hover {
  37. background-color: #FF9A8A;
  38. }
  39. #frame_btn_restoredown {
  40. background-color: #fed045;
  41. }
  42. #frame_btn_restoredown:hover {
  43. background-color: #FFE9A9;
  44. }
  45. #frame_btn_minimize {
  46. background-color: #96e734;
  47. }
  48. #frame_btn_minimize:hover {
  49. background-color: #D6FFA6;
  50. }