@import "compass/css3";
|
|
|
|
body, html {
|
|
overflow:hidden;
|
|
background-color:#f1f1f1;
|
|
}
|
|
|
|
#title
|
|
{
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: 70px;
|
|
margin: 0px;
|
|
background-color: #2b2b2b;
|
|
z-index: 100;
|
|
}
|
|
|
|
a
|
|
{
|
|
color:#5fd0f1;
|
|
text-decoration:none;
|
|
}
|
|
|
|
#title img
|
|
{
|
|
padding-top:10px;
|
|
height: 50px;
|
|
}
|
|
|
|
#title .rightLogo
|
|
{
|
|
float:right;
|
|
margin-right:25px;
|
|
}
|
|
|
|
.flex-container {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
|
|
-webkit-flex-flow: row wrap;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.flex-item {
|
|
padding: 5px;
|
|
width: 200px;
|
|
height: 200px;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
#date {
|
|
font-size: 30px;
|
|
margin: 20px;
|
|
color: #2B2B2B;
|
|
}
|
|
|
|
#link {
|
|
margin-left: 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#calendar #event:hover {
|
|
background-color: #65ccea;
|
|
}
|
|
|
|
#calendar {
|
|
margin-top:60px;
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1000px) and (max-height: 500px){
|
|
|
|
#title
|
|
{
|
|
height: 50px;
|
|
}
|
|
|
|
#title img
|
|
{
|
|
padding-top:10px;
|
|
height: 30px;
|
|
}
|
|
|
|
}
|