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
.color_table td | |
{ | |
color: rgba(255,255,255,1); | |
padding: 0px; | |
} | |
.color_table td>p | |
{ | |
background-color: rgba(0, 0, 0, 0.3); /* opacity can be adjusted, but you get it */ | |
padding: 3px 5px; /* much clearer */ |
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
def checkUniqueDict(s): | |
if not s: | |
return False | |
symbols = {} | |
for c in s: | |
if symbols.get(c): | |
return False | |
else: |
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
/* | |
* This will make all fixed elements relative, | |
* so they won't stand between you and article. | |
* Left sidebar with share and clap buttons is affected too. | |
*/ | |
.u-fixed { position: relative!important } | |
/* This will remove unnecessary spacer after top menu. */ | |
.metabar--spacer { display: none } |
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
#!/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
import argparse | |
THEME_PATH = '/usr/share/themes' | |
HOME_THEME_PATH = os.path.join(os.environ['HOME'],'.themes') | |
# [0] theme path, [1] theme name, [2] shell name, [3] font list |
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
/* ==UserStyle== | |
@name Dark comments.app | |
@namespace RadRussianRusThemes | |
@version 1.1.4 | |
@description Dark theme for Telegram's comments.app site. This version does not affect site widgets, if you want it, use this version: https://gist.github.com/RadRussianRus/7710133e4c75e99c871cf0023119244d | |
@author RadRussianRus (https://t.me/radrussianrus) | |
@license unlicense | |
@homepageURL https://gist.github.com/RadRussianRus/00a4fa06d8c6f074b489a9d2604ef66c | |
@updateURL https://gist.githubusercontent.com/RadRussianRus/00a4fa06d8c6f074b489a9d2604ef66c/raw/darkcommentsapp.user.css | |
==/UserStyle== */ |
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
/* ==UserStyle== | |
@name Dark comments.app | |
@namespace RadRussianRusThemes | |
@version 1.1.4 | |
@description Dark theme for Telegram's comments.app site. This version affects site widgets, if you don't want it, use this version: https://gist.github.com/RadRussianRus/00a4fa06d8c6f074b489a9d2604ef66c | |
@author RadRussianRus (https://t.me/radrussianrus) | |
@license unlicense | |
@homepageURL https://gist.github.com/RadRussianRus/7710133e4c75e99c871cf0023119244d | |
@updateURL https://gist.githubusercontent.com/RadRussianRus/7710133e4c75e99c871cf0023119244d/raw/darkcommentsapp_widgets.user.css | |
==/UserStyle== */ |
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
[ | |
{ | |
"command": "pinned_1", | |
"keys": "ctrl+1" | |
}, | |
{ | |
"command": "pinned_2", | |
"keys": "ctrl+2" | |
}, | |
{ |
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
[UINewSkirmishScreen] | |
m_strNoChange="НЕ ИЗМЕНЯТЬ" | |
m_strLoadCharPool="Загрузить из группы персонажей" | |
m_strSoldierTypeMismatch="Другой тип солдата" | |
m_strUtilityItemConflict="Надеты конфликтующие предметы" | |
m_strWeaponUpgrades="Улучшения оружия" | |
m_strEmptyWeaponUpgrade="ПУСТО" | |
m_strWeaponUpgradeMenu="УЛУЧШЕНИЯ ОРУЖИЯ" | |
m_strSelectCharacterPool="ВЫБЕРИТЕ ПЕРСОНАЖА" | |
m_strSelectWeaponUpgrade="ВЫБЕРИТЕ УЛУЧШЕНИЕ ОРУЖИЯ" |