2016-02-09 16:43:04 -05:00

134 lines
2.3 KiB
CSS

@font-face {
font-family: 'Lato';
src: url('./lato-light.woff');
}
html {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
overflow: hidden;
}
body {
background-image: url('./bg.png');
overflow: hidden;
}
h1 {
font-family: Lato;
font-size: 300%;
text-align: center;
}
#date {
margin-top:1%;
max-width: 60%;
}
.eachDay {
font-family: Lato;
color: #353535;
max-width:30%;
background-color: #136FB5;
box-shadow: 4px 5px 3px 2px #444;
margin-left: auto;
margin-right: auto;
margin-bottom:2%;
padding-top: 1.5%;
padding-bottom: 1%;
padding-left: 3%;
padding-right: 5%;
-webkit-transition: transform 0.5s ease;
-moz-transition: transform 0.5s ease;
-ms-transition: transform 0.5s ease;
transition: transform 0.5s ease;
}
.eachDay:hover {
-webkit-transform: scale(1.02);
-moz-transform: scale(1.02);
-ms-transform: scale(1.02);
transform: scale(1.02);
}
.recent {
color: #353535;
background-color: #5BEF78;
max-width:30%;
}
.scheduleList {
margin-top: 10%;
}
.type {
font-size:600%;
max-width:30%;
}
.date {
font-size:250%;
padding-top:2%;
}
.pulltab {
position:absolute;
margin-top:4%;
width: 0;
height: 0;
border-top: 40px solid transparent;
border-bottom: 40px solid transparent;
border-left: 40px solid #FF746B;
-webkit-transition: transform 0.2s ease, border 0.2s ease, margin 0.3s ease;
-moz-transition: transform 0.2s ease, border 0.2s ease, margin 0.3s ease;
-ms-transition: transform 0.2s ease, border 0.2s ease, margin 0.3s ease;
transition: transform 0.2s ease, border 0.2s ease, margin 0.3s ease;
}
.pulltab:hover {
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}
.sidebar {
position:absolute;
min-height:100%;
background-color: #FF746B;
box-shadow: 2px 2px 5px 3px #444;
padding-left: 7%;
padding-right: 2%;
padding-top: 2%;
}
.scale {
font-family: Lato;
min-height: 100%;
min-width: 17%;
position: absolute;
top: 0;
left: -20%;
-webkit-transition: transform 0.3s ease;
-moz-transition: transform 0.3s ease;
-ms-transition: transform 0.3s ease;
transition: transform 0.3s ease;
}
.fa {
-webkit-transition: color 0.5s ease;
-moz-transition: color 0.5s ease;
-ms-transition: color 0.5s ease;
transition: color 0.5s ease;
}
.fa:hover {
color: #FF746B;
}