silvrgit/app/css/clock.css

175 lines
3.3 KiB
CSS
Raw Normal View History

2016-03-08 21:52:21 +00:00
@media (min-width:800px) {
body {
2016-04-19 15:24:02 +00:00
font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, sans-serif;
2016-05-22 22:46:23 +00:00
overflow:hidden;
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;
height: 150px;
background-color: #312121;
}
#misc {
position: absolute;
top: 450px;
left: 0;
width: 800px;
height: 150px;
background-color: #213121;
}
.weatherBit {
2016-05-22 22:41:12 +00:00
color: #dcecff;
2016-03-08 21:52:21 +00:00
font-size: 36px;
}
.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-05-22 22:41:12 +00:00
color: #dcecff;
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-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: 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-05-22 22:41:12 +00:00
color: #dcecff;
2016-03-08 21:52:21 +00:00
font-size: 36px;
}
.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: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-05-22 22:41:12 +00:00
color: #dcecff;
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-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: 512px;
left: 0;
width: 100%;
height: 256px;
background-color: #312121;
}
#misc {
position: absolute;
top: 768px;
left: 0;
width: 100%;
height: 256px;
background-color: #213121;
2016-05-22 22:45:29 +00:00
display: none;
2016-03-08 21:52:21 +00:00
}
.weatherBit {
2016-05-22 22:41:12 +00:00
color: #dcecff;
2016-03-08 21:52:21 +00:00
font-size: 36px;
}
.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;
}
}