Skip to content

Instantly share code, notes, and snippets.

View Sh00k-ThaD3v's full-sized avatar
💯
Loving T3ch

Krisshatta Esclovon Sh00k-ThaD3v

💯
Loving T3ch
View GitHub Profile
<div class="container">
<div class="screen">
<div class="screen__content">
<form class="login">
<div class="login__field">
<i class="login__icon fas fa-user"></i>
<input type="text" class="login__input" placeholder="User name / Email">
</div>
<div class="login__field">
<i class="login__icon fas fa-lock"></i>
@Sh00k-ThaD3v
Sh00k-ThaD3v / README.md
Created June 18, 2022 05:19 — forked from MichaelCurrin/README.md
Deploy to GitHub Pages with GitHub Actions

GH Pages deploy

Deploys for static sites or web apps made easy with GitHub Actions

A generic but elegant CI flow for deploying a site to Github Pages - this is triggered on a push to master and runs on Github Actions - docs.

This workflow is targeted at a static site like Hexo or a single-page applciation like React project. It doesn't matter what the language is as long as your build steps results in a public directory which can be served on Github Pages.

Show me the workflow

@Sh00k-ThaD3v
Sh00k-ThaD3v / index.html
Created June 18, 2022 08:21
Liquid Lights
<canvas id="canv"></canvas>
<p>Liquid Lights</p>
@Sh00k-ThaD3v
Sh00k-ThaD3v / css-gradient-border-animated.markdown
Created June 18, 2022 21:29
CSS Gradient Border + Animated
@Sh00k-ThaD3v
Sh00k-ThaD3v / index.html
Created June 19, 2022 21:00
Mini Music Player - VueJS
<div class="wrapper" id="app">
<div class="player">
<div class="player__top">
<div class="player-cover">
<transition-group :name="transitionName">
<div class="player-cover__item" v-if="$index === currentTrackIndex" :style="{ backgroundImage: `url(${track.cover})` }" v-for="(track, $index) in tracks" :key="$index"></div>
</transition-group>
</div>
<div class="player-controls">
<div class="player-controls__item -favorite" :class="{ active : currentTrack.favorited }" @click="favorite">
@Sh00k-ThaD3v
Sh00k-ThaD3v / index.html
Created June 19, 2022 21:51
Mini Music Player - VueJS
<div class="wrapper" id="app">
<div class="player">
<div class="player__top">
<div class="player-cover">
<transition-group :name="transitionName">
<div class="player-cover__item" v-if="$index === currentTrackIndex" :style="{ backgroundImage: `url(${track.cover})` }" v-for="(track, $index) in tracks" :key="$index"></div>
</transition-group>
</div>
<div class="player-controls">
<div class="player-controls__item -favorite" :class="{ active : currentTrack.favorited }" @click="favorite">
@Sh00k-ThaD3v
Sh00k-ThaD3v / index.html
Created June 19, 2022 21:55
Iridescent morphing blob
<!--
Custom three.js Shader / ShaderMaterial
with all MeshPhongMaterial's shader features.
the basic 'phong template' is setup for uniforms,
vertex and fragment shaders, and code is simply
injected in program to allow for changing the vertex
positions and the diffuse color before default lighting is applied.
by @gsynuh
-->
@Sh00k-ThaD3v
Sh00k-ThaD3v / glassmorphism-vs-neumorphism-cards-css-js-vanillatilt.markdown
Created July 3, 2022 03:18
Glassmorphism vs Neumorphism Cards | CSS, Js & VanillaTilt
@Sh00k-ThaD3v
Sh00k-ThaD3v / glassmorphism-vs-neumorphism-cards-css-js-vanillatilt.markdown
Created July 3, 2022 05:56
Glassmorphism vs Neumorphism Cards | CSS, Js & VanillaTilt