24 lines
418 B
CSS
24 lines
418 B
CSS
![]() |
@import url("https://fonts.googleapis.com/css?family=Ubuntu");
|
||
|
|
||
|
body{
|
||
|
height:100%;
|
||
|
display:flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-around;
|
||
|
flex-direction: column;
|
||
|
font-family:"Ubuntu";
|
||
|
}
|
||
|
|
||
|
#weather-data li{
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
#weather-data{
|
||
|
font-size: xx-large;
|
||
|
background-color: lightgray;
|
||
|
padding-right: 25px;
|
||
|
}
|
||
|
|
||
|
#camera{
|
||
|
padding: 20px;
|
||
|
}
|