aboutDialog.css 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #aboutPMDialogContainer {
  2. background-image: url("chrome://branding/content/about-background.jpg");
  3. background-repeat: no-repeat;
  4. background-color: #D5BC9A;
  5. color: #202010;
  6. }
  7. #aboutHeaderBox {
  8. background-image: url("chrome://branding/content/about-wordmark.png");
  9. background-repeat: no-repeat;
  10. background-position: center center;
  11. height: 44px;
  12. }
  13. #aboutVersionBox {
  14. text-shadow: 1px 1px 0px #D5BC9A;
  15. }
  16. #aboutTextBox {
  17. animation: 3s fadeIn;
  18. animation-fill-mode: forwards;
  19. text-shadow: 1px 1px 0px #D5BC9A;
  20. color: #202010;
  21. }
  22. @keyframes fadeIn {
  23. 0% {
  24. opacity: 0;
  25. }
  26. 50% {
  27. opacity: 0;
  28. }
  29. 100% {
  30. opacity: 1;
  31. }
  32. }
  33. #aboutLinkBox {
  34. padding: 15px 10px 0;
  35. }
  36. #aboutPMtrademark {
  37. font-size: 10px;
  38. text-align: center;
  39. color: #C0C0C0;
  40. text-shadow: 1px 1px 0px #000000;
  41. margin-top: 10px;
  42. margin-bottom: 10px;
  43. }