mirror of
https://github.com/Floriansylvain/creative_coding_1.git
synced 2026-08-19 11:43:20 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
*
|
||||
{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html,
|
||||
body
|
||||
{
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.webgl
|
||||
{
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.loader {
|
||||
z-index: 3;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
display: none;
|
||||
transform: translate(-50%, -50%);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.loader.is-active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.start-btn {
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
display: none;
|
||||
transform: translate(-50%, -50%);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.start-btn.is-active {
|
||||
display: block;
|
||||
}
|
||||
Reference in New Issue
Block a user