/* Import Icon fonts and web font */
@import "https://fonts.googleapis.com/css?family=Open+Sans:400,300,700";
@import url(entypo);
@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/* entypo */
[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}




/* Colors declarations */
/* General styles */
.wrapperr {
  width: 275px;
  height: 300px;
  padding: 0 15px 0 0px ;
  margin: 5% auto;
  background-color: #ff0000;
}

.wrapperg {
  width: 275px;
  height: 300px;
  padding: 0 15px 0 0px ;
  margin: 5% auto;
  background-color: #009933;
}


body {
  color: #eee;
  font-family: 'Open Sans', sans-serif;
  background-color: #E0E1E3;
}

nav {
  width: 75px;
  
  height: 100%;
  float: left;
  background-color: #3366ff;
}
nav ul li {
  width: 50px;
  height: 70px;
  text-align: left;
}
nav ul li.last {
  line-height: 80px;
}
nav ul li.active {
  background-color: #4b4e57;
}
nav ul li a {
  color: #eee;
  font-size: 2.2em;
  text-decoration: none;
  transition: font-size 0.2s;
}
nav ul li a:hover {
  font-size: 2.6em;
}




section {
  width: 270px;
  height: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  float: left;
  position: relative;
  background-color: #cceeff;
}
section h1 {
  color: #3333ff;
  width: 200px;
  position: relative;
  font-size: 2em;
  border-bottom: 2px solid #3333ff;
}



section .temperature {
  padding: 10px 0px;
  color: #3333ff;
  font-size: 3em;
  transition: color 0.5s ease;
}



section .temperature:hover {
  color: yellow;
}
section .temperature h2 {
  display: inline;
  color: #3333ff;
  font-weight: 300;
}
section .temperature h2 a{
  color: #3333ff;
}
section .temperature h2 a:hover{
  color: yellow;
}
section ul {
  margin-bottom: 7px;
}
section ul li {
  display: block;
  float: left;
  margin-right: 6px;
  color: #3333ff;
  font-size: 2em;
}
section ul li:last-child {
  margin-right: 0px;
}
section ul li span {
  /*padding-left: 10px;*/
  color: #3333ff;
  font-size: 0.6em;
  line-height: 20px;
  vertical-align: top;
}
section .bullets {
  height: 70px;
  color: #3D414C;
  text-align: center;
}
section .bullets span {
  margin-right: 10px;
  font-size: 0.6em;
}
section .bullets span.active {
  color: #eee;
  font-size: 0.8em;
}
section a {
  color: #60646e;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.5s;
}
section a:hover {
  color: #eee;
}
section a .external-link {
  padding-left: 5px;
  font-size: 0.6em;
  vertical-align: middle;
}
