This file contains 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 lang="en"> | |
<head> | |
<title>Voxels</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body { | |
font-family: Monospace; | |
font-size: 12px; | |
background-color: #f0f0f0; |
This file contains 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 lang="en"> | |
<head> | |
<title>Voxels</title> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
body { | |
font-family: Monospace; | |
font-size: 12px; | |
background-color: #f0f0f0; |
This file contains 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
.amp { | |
&.ext.support { | |
matched: amp extended; //all hit this | |
} | |
+ .ext.support { | |
color: plus extended; //all hit this | |
} | |
.ext.support { | |
matched: extended; //all hit this | |
} |
This file contains 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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<link rel="stylesheet" type="text/css" href="theme-simple-mixin.css"> | |
<script src="less.min.js" type="text/javascript"></script> | |
<title>Less Demo</title> | |
</head> | |
<body> | |
<div class="box"> | |
Box: both text and border colors are functions of the @base variable. <br> The border is 30% lighter and the text is 5% saturated. |
This file contains 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
<html><head><style> | |
div{ | |
width:300px; | |
height:100px; | |
} | |
div#spaces{ | |
background-color:yellow; | |
-webkit-transform: skew(30deg) rotate(30deg) translate(50px,100px); | |
transform: skew(30deg) rotate(30deg) translate(50px,100px); | |
} |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Phaser - Making your first game, part 1</title> | |
<script type="text/javascript" src="js/phaser.1.1.6.min.js"></script> | |
<style type="text/css"> | |
body { | |
margin: 0; | |
} |
This file contains 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
alert("Yessss"); | |
function meri() { | |
alert("Internet"); | |
} |