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="box"> | |
Hello world | |
</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
@mixin transition($transition-property, $transition-time, $method, $delay: 0s) { | |
-webkit-transition: $transition-property $transition-time $method $delay; | |
-moz-transition: $transition-property $transition-time $method $delay; | |
-ms-transition: $transition-property $transition-time $method $delay; | |
-o-transition: $transition-property $transition-time $method $delay; | |
transition: $transition-property $transition-time $method $delay; | |
} | |
$c-red: red; | |
$c-blue: blue; |
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="box"></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
<h5 class="ms-rtestate-field"> | |
head | |
</h5> |
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
<i class="❤ css"> | |
I ❤ CSS | |
</i> |
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
// store this file as .csscomb.json in the root of your project | |
{ | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": "\t", | |
"color-shorthand": true, | |
"element-case": "lower", | |
"eof-newline": false, | |
"leading-zero": false, | |
"quotes": "double", |
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
// Default theme slots of Office theme | |
{ | |
"backgroundOverlay": null, | |
"primaryBackground": null, | |
"primaryText": null, | |
"themeDarker": "#013a76", | |
"themeDark": "#0156b0", | |
"themeDarkAlt": "#0156b0", | |
"themePrimary": "#0273eb", | |
"themeSecondary": "#5dabfe", |
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
$ms-greenLight: "[theme:greenLight, default:#bad80a]"; | |
$ms-neutralSecondaryAlt: "[theme:info, default:#767676]"; | |
$ms-neutralLight: "[theme:infoBackground, default:#eaeaea]"; | |
$ms-magenta: "[theme:magenta, default:#b4009e]"; | |
$ms-magentaDark: "[theme:magentaDark, default:#5c005c]"; | |
$ms-magentaLight: "[theme:magentaLight, default:#e3008c]"; | |
$ms-neutralDark: "[theme:neutralDark, default:#212121]"; | |
$ms-neutralLight: "[theme:neutralLight, default:#eaeaea]"; | |
$ms-neutralLighter: "[theme:neutralLighter, default:#f4f4f4]"; | |
$ms-neutralLighterAlt: "[theme:neutralLighterAlt, default:#f8f8f8]"; |
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
(function () { | |
var myFormContext = { | |
Templates: { | |
Fields: { | |
LookUp: { | |
"View": function (ctx) { | |
debugger | |
console.log('Hitted'); | |
console.log(ctx); |
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
'use strict'; | |
var Vimeo = require('vimeo').Vimeo; | |
const VimeoAPIKey = process.env.VimeoAPI, | |
VimeoAPISecret = process.env.VimeoSecret, | |
VimeoEndPoint = process.env.VimeoEndPoint; | |
var _handleError = { | |
noQuery: (context) => { |
OlderNewer