Implement flying toasters

This commit is contained in:
2025-07-29 16:08:47 -05:00
parent b444b59533
commit bf3d60fdc2
10 changed files with 583 additions and 1 deletions

View File

@ -0,0 +1,38 @@
/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
background-color: #111;
margin: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
/* Hide only visually, but have it available for screenreaders & for SEO purposes. See h5bp.com/v */
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}