@charset "UTF-8";
/**
 * Copyright 2013 tuxnet24.de
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * @author Marko Schulz <info@tuxnet24.de>
 * @copyright Copyright (c) 2011 tuxnet24.de
 * @version $Id: default.css,v 1.0 2011/11/09 10:51:24$
 * @description Stylesheet to include all other styles.
 */

.desklet {
 display: table;
 width: 250px;
 background: transparent;
}
.desklet .row {
 display: table-row;
}
.desklet .column {
 display: table-cell;
 vertical-align: top;
 width: 33.333%;
}

.desklet .column-full {
 display: table-cell;
 vertical-align: top;
 width: 99.99%;
}

.desklet .forcast {
 border-top: 1px solid rgba(68,68,68, 0.7);
 padding: 10px 0;
}

.desklet .values {
 padding-top: 10px;
}

.desklet .text {
 padding-bottom: 10px;
}

.desklet .forcast:not(:last-child) {
 border-right: 1px solid rgba(68,68,68, 0.7);
}

.desklet .forcast > p:last-child {
 font-size: 90%;
}

.desklet .column > h4 {
 margin:0;
 font-size: 3rem;
}
.desklet .column > p {
 margin: 0 0 3px 0; 
 font-size: 1rem;
}

.desklet .info > p {
 font-size: 90%;
}

.center { text-align: center; }
.right  { text-align: right;  }


