widget.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .clockContainer .daydate{
  2. font-size: 10px;
  3. }
  4. .clockContainer{
  5. background-color:#343a40;
  6. width:100%;
  7. height:100%;
  8. min-height: 263px;
  9. box-sizing:border-box;
  10. text-align:center;
  11. padding:20px;
  12. }
  13. .clock {
  14. height: 200px;
  15. width: 200px;
  16. margin:auto;
  17. position:relative;
  18. background-color:#343a40;
  19. }
  20. .progress > svg {
  21. height: 100%;
  22. display: block;
  23. }
  24. .progressbar-text{
  25. position:absolute;
  26. left:0px;
  27. top:60px;
  28. width:100%;
  29. text-align:center;
  30. font-weight:200;
  31. color:#ffffff!important;
  32. }
  33. .progressbar-text .dayName,.progressbar-text .dayDate{
  34. font-size:15px;
  35. color:#cecece;
  36. margin: 10px 0;
  37. font-weight:400;
  38. }
  39. .progressbar-text .dayName{
  40. font-weight:bold;
  41. color:#ffffff;
  42. margin-top: 0px ;
  43. }
  44. /* profile widget */
  45. .profileContainer{
  46. padding-bottom: 10px;
  47. text-align: center;
  48. }
  49. .profileContainer .profileHeader{
  50. background-color: #8e44ad;
  51. border-bottom:5px solid rgba(255, 255, 255,0.5);
  52. height:100px;
  53. width:100%;
  54. background-image: url('../img/defaultBackground.jpg');
  55. background-size: cover;
  56. }
  57. .profileContainer .profileImage{
  58. margin-top: -60px;
  59. cursor:pointer;
  60. display: block;
  61. text-align: center;
  62. }
  63. .profileContainer .profileImage img{
  64. border-radius: 120px;
  65. height: 120px;
  66. width: auto;
  67. border:4px solid #ffffff;
  68. }
  69. .profileContainer h3{
  70. text-align: center;
  71. margin-bottom: 0px;
  72. font-size: 20px;
  73. margin-top: 6px;
  74. }
  75. .profileContainer small{
  76. text-align: center;
  77. font-size: 15px;
  78. font-style: italic;
  79. color:#cecece;
  80. }
  81. .profileToken{
  82. display: block;
  83. }
  84. .profileToken input{
  85. padding: 2px 4px;
  86. font-size: 90%;
  87. color: #c7254e;
  88. background-color: #f9f2f4;
  89. border-radius: 4px;
  90. border:none;
  91. text-align: center;
  92. }