204 lines
3.5 KiB
CSS
204 lines
3.5 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;
|
|
}
|
|
|
|
body {
|
|
background-image: url('./bg.png');
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1 {
|
|
font-family: Lato;
|
|
font-size: 300%;
|
|
}
|
|
|
|
#date {
|
|
margin-top:4%;
|
|
margin-left: 3.5%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
#post {
|
|
font-size: 150%;
|
|
float: right;
|
|
display: inline;
|
|
margin-top: -10.5%;
|
|
margin-right: 8%;
|
|
width: 35%;
|
|
min-height: 50%;
|
|
}
|
|
|
|
#button {
|
|
margin-left: 3.5%;
|
|
margin-top: 3%;
|
|
font-size: 200%;
|
|
width: 88%;
|
|
color: #fff;
|
|
background-color: #DD655D;
|
|
border: 0;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
text-align: left;
|
|
outline: none;
|
|
|
|
-webkit-transition: background-color 0.5s ease;
|
|
-moz-transition: background-color 0.5s ease;
|
|
-ms-transition: background-color 0.5s ease;
|
|
transition: background-color 0.5s ease;
|
|
}
|
|
|
|
#button:hover {
|
|
background-color: #EA4D4D;
|
|
}
|
|
|
|
.login-display-name {
|
|
display: none !important;
|
|
}
|
|
.login-button {
|
|
margin-left: 20% !important;
|
|
width: 100% !important;
|
|
height: 28px !important;
|
|
}
|
|
.eachDay {
|
|
position: relative;
|
|
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:fixed;
|
|
margin-top:0%;
|
|
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: fixed;
|
|
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 {
|
|
float:right;
|
|
clear:right;
|
|
position: absolute;
|
|
top: 3%;
|
|
right: 2.3%;
|
|
|
|
-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;
|
|
}
|
|
|
|
.about {
|
|
position: absolute;
|
|
bottom: 3%;
|
|
max-width: 70%;
|
|
margin-left: 3.5%;
|
|
font-size: 110%;
|
|
}
|
|
|
|
.github {
|
|
font-size: 120%;
|
|
|
|
-webkit-transition: color 0.3s ease;
|
|
-moz-transition: color 0.3s ease;
|
|
-ms-transition: color 0.3s ease;
|
|
transition: color 0.3s ease;
|
|
|
|
}
|
|
.github:hover {
|
|
text-decoration: none;
|
|
color: #69CBE4;
|
|
} |