First, learn JSON. It's not programming language, not even close. Just follow syntax rules and you will be fine.
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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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
Z-Team Pack beta 2 | |
https://web.archive.org/web/20190209084304/http://z-team.org.ru/forum/viewtopic.php?f=7&t=507 | |
Z-Team Pack 4 r 174 (beta) 15.05.2010 | |
https://www.teeworlds.com/forum/viewtopic.php?id=8473 | |
source's | |
https://app.assembla.com/spaces/zteeworlds/subversion/source | |
https://github.com/gerich-home/zteeworlds | |
Z-Team Pack 5 |
In this repository you will find a collection of teeworlds binds, configs and scripts which you can use in your
settings_ddnet.cfg
If you feel like a bind is missing please contribute.
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
import Vue from 'vue'; | |
import { VSnackbar } from 'vuetify/lib'; | |
import _ from 'underscore'; | |
const plugin = { | |
install: () => { | |
Vue.prototype.$showSnackbar = function (content = '', props = {}) { | |
const appEl = document.getElementById('monitoring'); | |
const snackbarEl = document.createElement('div'); |