2016-06-06 13:15:47 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
2016-06-06 13:15:47 +00:00
|
|
|
@media (min-width:800px) {
|
2016-03-08 21:52:21 +00:00
|
|
|
|
|
|
|
#clock {
|
2016-04-19 15:24:02 +00:00
|
|
|
font-family: 'Ubuntu Condensed', monospace, monospace;
|
2016-03-08 21:52:21 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 800px;
|
|
|
|
height: 300px;
|
2016-05-22 22:41:12 +00:00
|
|
|
background-color: #000000;
|
2016-04-28 09:48:48 +00:00
|
|
|
/*font-size: 180px;*/
|
|
|
|
font-size:20vw;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2016-05-22 22:41:12 +00:00
|
|
|
color: #dcecff;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clockDisplay {
|
|
|
|
margin-top: 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
#weather {
|
|
|
|
position: absolute;
|
|
|
|
top: 300px;
|
|
|
|
left: 0;
|
|
|
|
width: 800px;
|
2016-06-06 13:15:47 +00:00
|
|
|
height: 100px;
|
|
|
|
/*background-color: #312121;*/
|
|
|
|
background-color: #000000;
|
|
|
|
overflow: hidden;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#misc {
|
|
|
|
position: absolute;
|
|
|
|
top: 450px;
|
|
|
|
left: 0;
|
|
|
|
width: 800px;
|
|
|
|
height: 150px;
|
|
|
|
background-color: #213121;
|
|
|
|
}
|
|
|
|
|
2016-06-06 13:15:47 +00:00
|
|
|
#datearea {
|
|
|
|
width:100%;
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
display:table;
|
|
|
|
}
|
2016-03-08 21:52:21 +00:00
|
|
|
.weatherBit {
|
2016-05-22 22:41:12 +00:00
|
|
|
color: #dcecff;
|
2016-10-05 14:08:57 +00:00
|
|
|
font-size: 2.8vw;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:08:57 +00:00
|
|
|
.weatherIcon {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 48px;
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
|
|
|
|
2016-06-06 13:15:47 +00:00
|
|
|
#day, #date {
|
|
|
|
color: #dcecff;
|
|
|
|
font-size: 5vw;
|
|
|
|
|
|
|
|
font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
width:50%;
|
|
|
|
display:table-cell;
|
|
|
|
}
|
2016-03-08 21:52:21 +00:00
|
|
|
.wday {
|
2016-05-22 22:41:12 +00:00
|
|
|
color: #dcecff;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width:1024px){
|
|
|
|
|
|
|
|
body {
|
2016-04-19 15:24:02 +00:00
|
|
|
font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2016-03-08 21:52:21 +00:00
|
|
|
background-color: #212121;
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clock {
|
2016-04-19 15:24:02 +00:00
|
|
|
font-family: 'Ubuntu Condensed', monospace, monospace;
|
2016-03-08 21:52:21 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 1024px;
|
|
|
|
height: 384px;
|
|
|
|
background-color: #212121;
|
2016-04-28 09:48:48 +00:00
|
|
|
/*font-size: 180px;*/
|
|
|
|
font-size:25vw;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clockDisplay {
|
|
|
|
margin-top: 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
#weather {
|
|
|
|
position: absolute;
|
|
|
|
top: 384px;
|
|
|
|
left: 0;
|
|
|
|
width: 1024px;
|
|
|
|
height: 192px;
|
|
|
|
background-color: #312121;
|
|
|
|
}
|
|
|
|
|
|
|
|
#misc {
|
|
|
|
position: absolute;
|
|
|
|
top: 576px;
|
|
|
|
left: 0;
|
|
|
|
width: 1024px;
|
|
|
|
height: 192px;
|
|
|
|
background-color: #213121;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weatherBit {
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
|
|
|
font-size: 3vw;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:08:57 +00:00
|
|
|
.weatherIcon {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 48px;
|
|
|
|
}
|
|
|
|
|
2016-03-08 21:52:21 +00:00
|
|
|
.wday {
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width:1280px){
|
|
|
|
|
|
|
|
body {
|
2016-04-19 15:24:02 +00:00
|
|
|
font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2016-03-08 21:52:21 +00:00
|
|
|
background-color: #212121;
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clock {
|
2016-04-19 15:24:02 +00:00
|
|
|
font-family: 'Ubuntu Condensed', monospace, monospace;
|
2016-03-08 21:52:21 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 512px;
|
|
|
|
background-color: #212121;
|
2016-04-28 09:48:48 +00:00
|
|
|
/*font-size: 300px;*/
|
|
|
|
font-size:25vw;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clockDisplay {
|
|
|
|
margin-top: 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
#weather {
|
|
|
|
position: absolute;
|
|
|
|
top: 512px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 256px;
|
|
|
|
background-color: #312121;
|
|
|
|
}
|
|
|
|
|
|
|
|
#misc {
|
|
|
|
position: absolute;
|
|
|
|
top: 768px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 256px;
|
|
|
|
background-color: #213121;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weatherBit {
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:08:57 +00:00
|
|
|
.weatherIcon {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 48px;
|
|
|
|
}
|
|
|
|
|
2016-03-08 21:52:21 +00:00
|
|
|
.wday {
|
2016-06-06 13:15:47 +00:00
|
|
|
color: #fff;
|
2016-03-08 21:52:21 +00:00
|
|
|
text-align: center;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|