diff --git a/assets/textures/iron_crate.png b/assets/textures/iron_crate.png new file mode 100644 index 0000000..9091a5e Binary files /dev/null and b/assets/textures/iron_crate.png differ diff --git a/assets/textures/iron_crate_event.png b/assets/textures/iron_crate_event.png new file mode 100644 index 0000000..b74f06a Binary files /dev/null and b/assets/textures/iron_crate_event.png differ diff --git a/assets/textures/portal.png b/assets/textures/portal.png new file mode 100644 index 0000000..986576d Binary files /dev/null and b/assets/textures/portal.png differ diff --git a/assets/textures/slime-placeholder.png b/assets/textures/slime-placeholder.png new file mode 100644 index 0000000..0163559 Binary files /dev/null and b/assets/textures/slime-placeholder.png differ diff --git a/assets/textures/slime_crate.png b/assets/textures/slime_crate.png new file mode 100644 index 0000000..d564578 Binary files /dev/null and b/assets/textures/slime_crate.png differ diff --git a/assets/textures/space.png b/assets/textures/space.png new file mode 100644 index 0000000..ea38460 Binary files /dev/null and b/assets/textures/space.png differ diff --git a/assets/textures/template.png b/assets/textures/template.png new file mode 100644 index 0000000..b21b60f Binary files /dev/null and b/assets/textures/template.png differ diff --git a/cards.css b/cards.css index 94a124a..c4934b6 100644 --- a/cards.css +++ b/cards.css @@ -11,14 +11,20 @@ * { transition: .3s; + image-rendering: pixelated; + image-rendering: crisp-edges; /*Mozilla*/ } + .noSelect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; - user-select: none; + user-select: none; +} +.card-numbers{ + position: absolute; } .card { cursor: pointer; @@ -30,6 +36,7 @@ background-size: cover; border-radius: 10px; margin: 3px; + } .card-row { @@ -46,15 +53,35 @@ } #wrapper { - height: 100vh; + /* height: 100vh; */ position: relative; display: flex; flex-direction: column; align-items: center; margin: 0 auto; max-width: 800px; + +} +.space { + /* background-color: rgb(80, 0, 146); */ + background-image: url(assets/textures/iron_crate_event.png) !important; +} +.cos-portal{ + width: 100%; + display: flex; + height: 100%; + align-items: center; + top: 0px; + justify-content: center; + position: fixed; + display: none; + transition: 10s !important; + -webkit-animation: rotating 20s linear infinite; + -moz-animation: rotating 20s linear infinite; + -ms-animation: rotating 20s linear infinite; + -o-animation: rotating 20s linear infinite; + animation: rotating 20s linear infinite; } - .animations { /* background-color: rgb(80, 0, 146); */ filter: invert(1); @@ -71,6 +98,7 @@ body { background-color: #1d1e22; + overflow-x: hidden; } #start-the-game { @@ -228,7 +256,35 @@ body { border: 0px solid transparent; } - + /*rotatating blakc hole animations*/ + @-webkit-keyframes rotating /* Safari and Chrome */ { + from { + -webkit-transform: rotate(0deg); + -o-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + -o-transform: rotate(360deg); + transform: rotate(360deg); + } + } + @keyframes rotating { + from { + -ms-transform: rotate(0deg); + -moz-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + -o-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -ms-transform: rotate(360deg); + -moz-transform: rotate(360deg); + -webkit-transform: rotate(360deg); + -o-transform: rotate(360deg); + transform: rotate(360deg); + } + } /* slider ends */ @media screen and (max-width: 513px) { .stats { diff --git a/index.php b/index.php index 404a114..26459fe 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@