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
body { | |
background:linear-gradient(180deg, #5BCEFA37 20%, #F5A9B837 20%, 40%, #FFFFFF37 40%, 60%, #F5A9B837 60%, 80%, #5BCEFA37 80%),rgba(100,100,100,0.5) !important; | |
} | |
header > div > div > div > div:nth-of-type(1) > div:nth-of-type(1) > h1 > a > div > svg { | |
opacity:0; | |
} | |
header > div > div > div > div:nth-of-type(1) > div:nth-of-type(1) > h1 > a > div { | |
background-size: 50px 50px; |
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
{ | |
"LightBlock": [ | |
{ | |
"block": "minecraft:sea_lantern", | |
"r": 34, | |
"g": 255, | |
"b": 200, | |
"a": 255, | |
"radius": 7 | |
}, |
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
//show tables; | |
//SHOW FIELDS FROM directus_users | |
var fs = require('fs'); | |
var mysql = require('mysql'); | |
var connection = mysql.createConnection({ | |
host : 'localhost', | |
user : 'docker', |
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
const gulp = require('gulp'); | |
const imagemin = require('gulp-imagemin'); | |
const uglify = require('gulp-uglify'); | |
const sass = require('gulp-sass'); | |
const concat = require('gulp-concat'); | |
const browserSync = require('browser-sync').create(); | |
gulp.task('message', () => { | |
return console.log("Hello World!"); | |
}) |