Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.62 KB | None | 0 0
  1. /*Custom CSS*/
  2. html {width: 100%;}
  3.  
  4. body {
  5.     margin: 0;
  6.     color: #F1F1F1;
  7.     width: 100%;
  8. }
  9.  
  10. .clear {
  11.     clear: both;
  12. }
  13.    
  14. .weather {
  15.     width: 100%;
  16. }
  17.  
  18. .col-1, .col-2 {
  19.     width: 100%;
  20.     float:left;
  21.     height:  80px;
  22.     border-bottom: 3px solid white;
  23. }
  24.  
  25. .icon, .aktuell, .forecast, .hum, .temp {
  26.     background-color: #212121;
  27.     height: 80px;
  28.     float: left;
  29. }
  30.  
  31. .icon {
  32.     width:25%;
  33. }
  34. .temp, .hum, .temp_high, .temp_low {
  35.     width: 25%
  36. }
  37.  
  38. .aktuell {
  39.     width: 75%;
  40. }
  41.  
  42. .caption {
  43.     padding-top: 5px;
  44. }
  45.  
  46. #temp, #hum, .unit {
  47.     float:left;
  48.     height: 80px;
  49.     background-color:#212121;
  50.     margin-top: 10px;
  51.     height: 70px;
  52. }
  53.  
  54.    
  55. .icon {
  56.   text-align: center;
  57.   vertical-align: middle;
  58.   /* padding: 0; */
  59.   font-size: 40px;
  60.   line-height: 80px;
  61.   color: #007dcd;
  62.   float: left;
  63.   width: 25%;
  64. }
  65.  
  66. .aktuell, .forecast {
  67.   width:75%;
  68.   font-family: "Helvetica, Arial", sans-serif;
  69.   font-size: 14px;
  70. }
  71.  
  72. .forecast_str_style {
  73.     background-color:#212121;
  74.     font-family: "Oswald", sans-serif;
  75.     font-size: 12px;
  76.     float:left;
  77.     margin-top: 5px;
  78. }
  79.  
  80. #temp_high, #temp_low {
  81.     width: 25%;
  82.     background-color:#212121;
  83.     float: left;
  84. }
  85.  
  86. .temp-style {
  87.     height: 70px;
  88.     background-color:#212121;
  89.     font-family: "Oswald", sans-serif;
  90.     font-size: 34px;
  91.     float: left;
  92.     margin-top: 10px;
  93. }
  94.  
  95. #weather_str {
  96.   font-family: "Oswald", sans-serif;
  97.   font-size: 20px;
  98. }
  99. #forecast_str {
  100.   font-family: "Oswald", sans-serif;
  101.   font-size: 12px;
  102. }
  103. .temp, .hum, .temp_high, .temp_low {
  104.   font-family: "Oswald", sans-serif;
  105.   font-size: 34px;
  106.   float: left;
  107.   width: 25%;
  108.   background-color: #212121;
  109. }
  110. .space {height: 4px;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement