aboutDialog.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #aboutPMDialogContainer {
  5. width: 700px;
  6. height: 410px;
  7. }
  8. #aboutVersionBox {
  9. font-family: Arial, helvetica;
  10. height: 38 px;
  11. }
  12. #aboutVersion {
  13. text-align: center;
  14. font-size: 18px;
  15. font-weight: bold;
  16. margin: 4px;
  17. }
  18. #distribution,
  19. #distributionId {
  20. text-align: center;
  21. font-size: 14px;
  22. font-weight: bold;
  23. display: none;
  24. margin-top: 0;
  25. margin-bottom: 0;
  26. }
  27. #aboutTextBox {
  28. font-family: Arial, helvetica;
  29. font-size: 14px;
  30. margin: 5px 20px;
  31. padding: 4px 10px 0px;
  32. border-radius: 3px;
  33. color: black;
  34. background-color: rgba(240, 240, 240, .6);
  35. }
  36. #aboutLinkBox {
  37. font-family: Arial, helvetica;
  38. }
  39. .text-credits {
  40. margin: 5px 0px;
  41. }
  42. .text-center {
  43. text-align: center;
  44. }
  45. .text-link,
  46. .text-link:focus {
  47. margin: 0px;
  48. padding: 0px;
  49. }
  50. .bottom-link,
  51. .bottom-link:focus {
  52. text-align: center;
  53. text-decoration: none !important;
  54. padding: 4px;
  55. border-radius: 3px;
  56. color: #244C8A;
  57. background-color: rgba(240, 240, 240, .7);
  58. margin: 0 40px;
  59. transition: background-color 0.5s ease-out;
  60. }
  61. .bottom-link:hover {
  62. background-color: rgba(240, 240, 255, .95);
  63. }