Rev 58 |
Go to most recent revision |
View as "text/plain" |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
1
<?php
namespace de\pointedears\css\least;
// \header('Last-Modified: ' . gmdate('D, d M Y H:i:s', @filemtime(__FILE__)) . ' GMT');
//
// /* Cached resource expires in HTTP/1.1 caches 24h after last retrieval */
// \header('Cache-Control: max-age=86400, s-maxage=86400, must-revalidate, proxy-revalidate');
//
// /* Cached resource expires in HTTP/1.0 caches 24h after last retrieval */
// \header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 86400) . ' GMT');
\header('Content-Type: text/css; charset=UTF-8');
require_once 'css/least/Mixins.php';
?>
@CHARSET "UTF-8";
/* 0.0 to 1.0 s */
<?php
Mixins::keyframes('fade-in',
'from {
opacity: 0;
}
/* at 0.25 s */
25% {
opacity: 0;
}
to {
opacity: 1;
}');
?>
body.fade-in {
/* TODO: Step-by-step display instead */
/*-webkit-animation-name: fade-in;*/
/* -webkit-animation-iteration-count: infinite; */
}
/* 0.0 to 0.6 s */
<?php
Mixins::keyframes('content',
'from {
opacity: 0;
}
/* 0.6 s */
99% {
opacity: 0;
}');
?>
.empty.fade-in #content {
<?php
Mixins::animation('-name', 'content');
Mixins::animation('-duration', '0.6s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 0.5 s */
<?php
Mixins::keyframes('bow-top',
'from {
left: 90%;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 1.2em;
border-bottom-right-radius: 1.2em;
}');
?>
.fade-in #bow-top {
<?php
Mixins::animation('-name', 'bow-top');
Mixins::animation('-duration', '0.5s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 0.5 s */
<?php
Mixins::keyframes('bow-top-text',
'from {
opacity: 0;
}
/* shortly before 1.0 s */
99% {
opacity: 0;
}');
?>
.fade-in #bow-top .text {
<?php
Mixins::animation('-name', 'bow-top-text');
Mixins::animation('-duration', '0.5s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 0.5 s */
<?php
Mixins::keyframes('footer',
'from {
left: 90%;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}');
?>
.empty.fade-in #footer {
<?php
Mixins::animation('-name', 'footer');
Mixins::animation('-duration', '0.5s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 0.5 s */
<?php
Mixins::keyframes('footer-text',
'from {
opacity: 0;
}
/* shortly before 0.5 s */
99% {
opacity: 0;
}');
?>
.empty.fade-in #footer .text {
<?php
Mixins::animation('-name', 'footer-text');
Mixins::animation('-duration', '0.5s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 0.625 s */
<?php
Mixins::keyframes('bow-top-left',
'from {
height: 0;
}
/* at 0.5 s */
80% {
height: 0;
}');
?>
.fade-in #bow-top-left {
<?php
Mixins::animation('-name', 'bow-top-left');
Mixins::animation('-duration', '0.625s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 1.125 s */
<?php
Mixins::keyframes('menu-container',
'from {
opacity: 0;
}
/* at ca. 0.61875 s */
55% {
opacity: 0;
}
56% {
opacity: 1;
}');
?>
.fade-in .menu-container {
<?php
Mixins::animation('-name', 'menu-container');
Mixins::animation('-duration', '1.125s');
Mixins::animation('-timing-function', 'linear');
?>
}
/* 0.0 to 1.125 s */
<?php
Mixins::keyframes('menu',
'from {
opacity: 0;
}
/* at ca. 0.61875 s */
55% {
opacity: 0;
}
56% {
opacity: 1;
}');
?>
.fade-in .menu
{
<?php
Mixins::animation('-name', 'menu');
Mixins::animation('-duration', '1.125s');
Mixins::animation('-timing-function', 'linear');
?>
}