This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrapper" id="app"> | |
| <div class="card-form"> | |
| <div class="card-list"> | |
| <div class="card-item" v-bind:class="{ '-active' : isCardFlipped }"> | |
| <div class="card-item__side -front"> | |
| <div class="card-item__focus" v-bind:class="{'-active' : focusElementStyle }" v-bind:style="focusElementStyle" ref="focusElement"></div> | |
| <div class="card-item__cover"> | |
| <img | |
| v-bind:src="'https://raw.githubusercontent.com/muhammederdem/credit-card-form/master/src/assets/images/' + currentCardBackground + '.jpeg'" class="card-item__bg"> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <!-- Coding By CodingNepal - youtube.com/codingnepal --> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Weather App in JavaScript | CodingNepal</title> | |
| <link rel="stylesheet" href="./style.css"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Linking BoxIcon for Icon --> | |
| <link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="checkbox" id="toggle" class="toggle--checkbox"> | |
| <label for="toggle" class="toggle--label"> | |
| <span class="toggle--label-background"></span> | |
| </label> | |
| <div class="background"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html class="no-js" lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Red Hat Sign-In</title> | |
| <meta name="description" content="sign-in page for Red Hat employees"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="theme-color" content="#cc0000"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Snake game created with plain JavaScript by Ibrahim fariat. | |
| * Follow me if you like it! | |
| **/ | |
| let dom_replay = document.querySelector("#replay"); | |
| let dom_score = document.querySelector("#score"); | |
| let dom_canvas = document.createElement("canvas"); | |
| document.querySelector("#canvas").appendChild(dom_canvas); | |
| let CTX = dom_canvas.getContext("2d"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="wrapper"> | |
| <div id="box"> | |
| <div class="side"> | |
| </div> | |
| <div class="pass-wrapper"> | |
| <svg id="svg" viewBox="0 0 105.83333 105.83334"> | |
| </svg> | |
| <div class="levels-container"> | |
| <div data-carac="length" data-level="0" class="level-line"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- PWA: https://bsehovac.github.io/the-cube/ --> | |
| <div class="ui"> | |
| <div class="ui__background"></div> | |
| <div class="ui__game"></div> | |
| <div class="ui__texts"> | |
| <h1 class="text text--title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| <div class="left-side"> | |
| <div class="card"> | |
| <div class="card-line"></div> | |
| <div class="buttons"></div> | |
| </div> | |
| <div class="post"> | |
| <div class="post-line"></div> | |
| <div class="screen"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| qwediv.main.flex#m | |
| div.keyboard.flex#k | |
| div.screen.flex#s | |
| div.keyboard__front.face | |
| div.keyboard__back.face | |
| div.keyboard__right.face | |
| div.keyboard__left.face | |
| div.keyboard__top.face | |
| //---------------------- | |
| div.keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| <div class="heading"> | |
| <h1 class="title">2048</h1> | |
| <div class="score-container">0</div> | |
| </div> | |
| <p class="game-intro">Join the numbers and get to the <strong>2048 tile!</strong></p> | |
| <div class="game-container"> | |
| <div class="game-message"> | |
| <p></p> |