Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reminders.css 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. body{
  2. background-color: #EDE3C0;
  3. }
  4. .reminder{
  5. background-color: #EEEEEE;
  6. display: block;
  7. margin-left: 10px;
  8. margin-right: 10px;
  9. margin-top: 10px;
  10. max-width: 300px;
  11. padding-right: 5px;
  12. padding-bottom: 5px;
  13. }
  14. .green{
  15. width: 150px;
  16. background-color: #00FF00;
  17. height: 10px;
  18. display: block;
  19. }
  20. .yellow{
  21. width: 150px;
  22. background-color: #FFFF00;
  23. height: 10px;
  24. display: block;
  25. }
  26. .orange{
  27. width: 150px;
  28. background-color: #FFA500;
  29. height: 10px;
  30. display: block;
  31. }
  32. .red{
  33. width: 150px;
  34. background-color: #FF0000;
  35. height: 10px;
  36. display: block;
  37. }
  38. .nocolor{
  39. height: 10px;
  40. display: block;
  41. }
  42. a{
  43. text-decoration: none;
  44. color: #000000;
  45. display: block;
  46. max-width: 300px;
  47. }
  48. .reminder span{
  49. margin-left: 5px;
  50. display: block;
  51. }
  52. .progress{
  53. float: left;
  54. color: #708090;
  55. font-size: 80%
  56. }
  57. .detail{
  58. float: right;
  59. color: #708090;
  60. font-size: 80%
  61. }
  62. .clearfix{
  63. clear: both;
  64. }
  65. .title{
  66. margin-bottom: 5px;
  67. margin-top: 3px;
  68. }