styles.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. * {
  2. font-family: 'Titillium Web';
  3. }
  4. body {
  5. background-color: white;
  6. }
  7. table.mailList {
  8. width: 100%;
  9. table-layout: fixed;
  10. }
  11. .mailList td {
  12. padding: 10pt;
  13. }
  14. .mailList tr:last-child {
  15. border-bottom: 0;
  16. }
  17. .mailList tr {
  18. background-color: #ffffff;
  19. border-bottom: 1px solid #41cd52;
  20. cursor: pointer;
  21. transition: background-color .3s;
  22. }
  23. .mailList tr:hover {
  24. background-color: #ebffee;
  25. }
  26. td.fromCol {
  27. width: 300pt;
  28. font-weight: bold;
  29. }
  30. td.subjCol {
  31. width: 100%;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. }
  36. td.dateCol {
  37. width: 100pt;
  38. overflow: hidden;
  39. text-overflow:ellipsis;
  40. white-space: nowrap;
  41. }
  42. .materialLevel1 {
  43. box-shadow: 0 1pt 3pt rgba(0, 0, 0, .6);
  44. margin-top: 1pt;
  45. margin-bottom: 1pt;
  46. margin-left: 4pt;
  47. margin-right: 4pt;
  48. border-radius: 3pt;
  49. }
  50. .materialLevel2 {
  51. box-shadow: 0 2pt 6pt rgba(0, 0, 0, .6);
  52. margin-top: 1pt;
  53. margin-bottom: 1pt;
  54. margin-left: 5pt;
  55. margin-right: 5pt;
  56. border-radius: 3pt;
  57. }
  58. .copyrights {
  59. color: #b8d4bc
  60. }