123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .clockContainer .daydate{
- font-size: 10px;
- }
- .clockContainer{
- background-color:#343a40;
- width:100%;
- height:100%;
- min-height: 263px;
- box-sizing:border-box;
- text-align:center;
- padding:20px;
- }
- .clock {
- height: 200px;
- width: 200px;
- margin:auto;
- position:relative;
- background-color:#343a40;
- }
- .progress > svg {
- height: 100%;
- display: block;
- }
- .progressbar-text{
- position:absolute;
- left:0px;
- top:60px;
- width:100%;
- text-align:center;
- font-weight:200;
- color:#ffffff!important;
- }
- .progressbar-text .dayName,.progressbar-text .dayDate{
- font-size:15px;
- color:#cecece;
- margin: 10px 0;
- font-weight:400;
- }
- .progressbar-text .dayName{
- font-weight:bold;
- color:#ffffff;
- margin-top: 0px ;
- }
- /* profile widget */
- .profileContainer{
- padding-bottom: 10px;
- text-align: center;
- }
- .profileContainer .profileHeader{
- background-color: #8e44ad;
- border-bottom:5px solid rgba(255, 255, 255,0.5);
- height:100px;
- width:100%;
- background-image: url('../img/defaultBackground.jpg');
- background-size: cover;
- }
- .profileContainer .profileImage{
- margin-top: -60px;
- cursor:pointer;
- display: block;
- text-align: center;
- }
- .profileContainer .profileImage img{
- border-radius: 120px;
- height: 120px;
- width: auto;
- border:4px solid #ffffff;
- }
- .profileContainer h3{
- text-align: center;
- margin-bottom: 0px;
- font-size: 20px;
- margin-top: 6px;
- }
- .profileContainer small{
- text-align: center;
- font-size: 15px;
- font-style: italic;
- color:#cecece;
-
- }
- .profileToken{
- display: block;
- }
- .profileToken input{
- padding: 2px 4px;
- font-size: 90%;
- color: #c7254e;
- background-color: #f9f2f4;
- border-radius: 4px;
- border:none;
- text-align: center;
- }
|