@@ -0,0 +1,227 @@
|
||||
//Please use mob or src (not usr) in these procs. This way they can be called in the same fashion as procs.
|
||||
/client/verb/wiki(query as text)
|
||||
set name = "wiki"
|
||||
set desc = "Type what you want to know about. This will open the wiki in your web browser. Type nothing to go to the main page."
|
||||
set hidden = 1
|
||||
var/wikiurl = CONFIG_GET(string/wikiurl)
|
||||
var/wikiurltg = CONFIG_GET(string/wikiurltg)
|
||||
if(wikiurl)
|
||||
if(query)
|
||||
var/output = wikiurl + "?search=" + query
|
||||
src << link(output)
|
||||
output = wikiurltg + "/index.php?title=Special%3ASearch&profile=default&search=" + query
|
||||
src << link(output)
|
||||
else if (query != null)
|
||||
src << link(wikiurltg)
|
||||
src << link(wikiurl)
|
||||
else
|
||||
to_chat(src, "<span class='danger'>The wiki URL is not set in the server configuration.</span>")
|
||||
return
|
||||
|
||||
/client/verb/forum()
|
||||
set name = "forum"
|
||||
set desc = "Visit the forum."
|
||||
set hidden = 1
|
||||
var/forumurl = CONFIG_GET(string/forumurl)
|
||||
if(forumurl)
|
||||
if(alert("This will open the forum in your browser. Are you sure?",,"Yes","No")!="Yes")
|
||||
return
|
||||
src << link(forumurl)
|
||||
else
|
||||
to_chat(src, "<span class='danger'>The forum URL is not set in the server configuration.</span>")
|
||||
return
|
||||
|
||||
/client/verb/rules()
|
||||
set name = "rules"
|
||||
set desc = "Show Server Rules."
|
||||
set hidden = 1
|
||||
var/rulesurl = CONFIG_GET(string/rulesurl)
|
||||
if(rulesurl)
|
||||
if(alert("This will open the rules in your browser. Are you sure?",,"Yes","No")!="Yes")
|
||||
return
|
||||
src << link(rulesurl)
|
||||
else
|
||||
to_chat(src, "<span class='danger'>The rules URL is not set in the server configuration.</span>")
|
||||
return
|
||||
|
||||
/client/verb/github()
|
||||
set name = "github"
|
||||
set desc = "Visit Github"
|
||||
set hidden = 1
|
||||
var/githuburl = CONFIG_GET(string/githuburl)
|
||||
if(githuburl)
|
||||
if(alert("This will open the Github repository in your browser. Are you sure?",,"Yes","No")!="Yes")
|
||||
return
|
||||
src << link(githuburl)
|
||||
else
|
||||
to_chat(src, "<span class='danger'>The Github URL is not set in the server configuration.</span>")
|
||||
return
|
||||
|
||||
/client/verb/reportissue()
|
||||
set name = "report-issue"
|
||||
set desc = "Report an issue"
|
||||
set hidden = 1
|
||||
var/githuburl = CONFIG_GET(string/githuburl)
|
||||
if(githuburl)
|
||||
var/message = "This will open the Github issue reporter in your browser. Are you sure?"
|
||||
if(GLOB.revdata.testmerge.len)
|
||||
message += "<br>The following experimental changes are active and are probably the cause of any new or sudden issues you may experience. If possible, please try to find a specific thread for your issue instead of posting to the general issue tracker:<br>"
|
||||
message += GLOB.revdata.GetTestMergeInfo(FALSE)
|
||||
if(tgalert(src, message, "Report Issue","Yes","No")!="Yes")
|
||||
return
|
||||
var/static/issue_template = file2text(".github/ISSUE_TEMPLATE.md")
|
||||
var/servername = CONFIG_GET(string/servername)
|
||||
var/url_params = "Reporting client version: [byond_version]\n\n[issue_template]"
|
||||
if(GLOB.round_id || servername)
|
||||
url_params = "Issue reported from [GLOB.round_id ? " Round ID: [GLOB.round_id][servername ? " ([servername])" : ""]" : servername]\n\n[url_params]"
|
||||
DIRECT_OUTPUT(src, link("[githuburl]/issues/new?body=[url_encode(url_params)]"))
|
||||
else
|
||||
to_chat(src, "<span class='danger'>The Github URL is not set in the server configuration.</span>")
|
||||
return
|
||||
|
||||
/client/verb/hotkeys_help()
|
||||
set name = "hotkeys-help"
|
||||
set category = "OOC"
|
||||
|
||||
var/adminhotkeys = {"<font color='purple'>
|
||||
Admin:
|
||||
\tF3 = asay
|
||||
\tF5 = Aghost (admin-ghost)
|
||||
\tF6 = player-panel
|
||||
\tF7 = Buildmode
|
||||
\tF8 = Invisimin
|
||||
\tCtrl+F8 = Stealthmin
|
||||
</font>"}
|
||||
|
||||
mob.hotkey_help()
|
||||
|
||||
if(holder)
|
||||
to_chat(src, adminhotkeys)
|
||||
|
||||
/client/verb/changelog()
|
||||
set name = "Changelog"
|
||||
set category = "OOC"
|
||||
var/datum/asset/changelog = get_asset_datum(/datum/asset/simple/changelog)
|
||||
changelog.send(src)
|
||||
src << browse('html/changelog.html', "window=changes;size=675x650")
|
||||
if(prefs.lastchangelog != GLOB.changelog_hash)
|
||||
prefs.lastchangelog = GLOB.changelog_hash
|
||||
prefs.save_preferences()
|
||||
winset(src, "infowindow.changelog", "font-style=;")
|
||||
|
||||
|
||||
/mob/proc/hotkey_help()
|
||||
var/hotkey_mode = {"<font color='purple'>
|
||||
Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tTAB = toggle hotkey-mode
|
||||
\ta = left
|
||||
\ts = down
|
||||
\td = right
|
||||
\tw = up
|
||||
\tq = drop
|
||||
\te = equip
|
||||
\tr = throw
|
||||
\tm = me
|
||||
\tt = say
|
||||
\to = OOC
|
||||
\tb = resist
|
||||
\t<B></B>h = stop pulling
|
||||
\tx = swap-hand
|
||||
\tz = activate held object (or y)
|
||||
\tShift+e = Put held item into belt or take out most recent item added to belt.
|
||||
\tShift+b = Put held item into backpack or take out most recent item added to backpack.
|
||||
\tf = cycle-intents-left
|
||||
\tg = cycle-intents-right
|
||||
\t1 = help-intent
|
||||
\t2 = disarm-intent
|
||||
\t3 = grab-intent
|
||||
\t4 = harm-intent
|
||||
\tNumpad = Body target selection (Press 8 repeatedly for Head->Eyes->Mouth)
|
||||
\tAlt(HOLD) = Alter movement intent
|
||||
</font>"}
|
||||
|
||||
var/other = {"<font color='purple'>
|
||||
Any-Mode: (hotkey doesn't need to be on)
|
||||
\tCtrl+a = left
|
||||
\tCtrl+s = down
|
||||
\tCtrl+d = right
|
||||
\tCtrl+w = up
|
||||
\tCtrl+q = drop
|
||||
\tCtrl+e = equip
|
||||
\tCtrl+r = throw
|
||||
\tCtrl+b = resist
|
||||
\tCtrl+h = stop pulling
|
||||
\tCtrl+o = OOC
|
||||
\tCtrl+x = swap-hand
|
||||
\tCtrl+z = activate held object (or Ctrl+y)
|
||||
\tCtrl+f = cycle-intents-left
|
||||
\tCtrl+g = cycle-intents-right
|
||||
\tCtrl+1 = help-intent
|
||||
\tCtrl+2 = disarm-intent
|
||||
\tCtrl+3 = grab-intent
|
||||
\tCtrl+4 = harm-intent
|
||||
\tCtrl+'+/-' OR
|
||||
\tShift+Mousewheel = Ghost zoom in/out
|
||||
\tDEL = stop pulling
|
||||
\tINS = cycle-intents-right
|
||||
\tHOME = drop
|
||||
\tPGUP = swap-hand
|
||||
\tPGDN = activate held object
|
||||
\tEND = throw
|
||||
\tCtrl+Numpad = Body target selection (Press 8 repeatedly for Head->Eyes->Mouth)
|
||||
</font>"}
|
||||
|
||||
to_chat(src, hotkey_mode)
|
||||
to_chat(src, other)
|
||||
|
||||
/mob/living/silicon/robot/hotkey_help()
|
||||
//h = talk-wheel has a nonsense tag in it because \th is an escape sequence in BYOND.
|
||||
var/hotkey_mode = {"<font color='purple'>
|
||||
Hotkey-Mode: (hotkey-mode must be on)
|
||||
\tTAB = toggle hotkey-mode
|
||||
\ta = left
|
||||
\ts = down
|
||||
\td = right
|
||||
\tw = up
|
||||
\tq = unequip active module
|
||||
\t<B></B>h = stop pulling
|
||||
\tm = me
|
||||
\tt = say
|
||||
\to = OOC
|
||||
\tx = cycle active modules
|
||||
\tb = resist
|
||||
\tz = activate held object (or y)
|
||||
\tf = cycle-intents-left
|
||||
\tg = cycle-intents-right
|
||||
\t1 = activate module 1
|
||||
\t2 = activate module 2
|
||||
\t3 = activate module 3
|
||||
\t4 = toggle intents
|
||||
</font>"}
|
||||
|
||||
var/other = {"<font color='purple'>
|
||||
Any-Mode: (hotkey doesn't need to be on)
|
||||
\tCtrl+a = left
|
||||
\tCtrl+s = down
|
||||
\tCtrl+d = right
|
||||
\tCtrl+w = up
|
||||
\tCtrl+q = unequip active module
|
||||
\tCtrl+x = cycle active modules
|
||||
\tCtrl+b = resist
|
||||
\tCtrl+h = stop pulling
|
||||
\tCtrl+o = OOC
|
||||
\tCtrl+z = activate held object (or Ctrl+y)
|
||||
\tCtrl+f = cycle-intents-left
|
||||
\tCtrl+g = cycle-intents-right
|
||||
\tCtrl+1 = activate module 1
|
||||
\tCtrl+2 = activate module 2
|
||||
\tCtrl+3 = activate module 3
|
||||
\tCtrl+4 = toggle intents
|
||||
\tDEL = stop pulling
|
||||
\tINS = toggle intents
|
||||
\tPGUP = cycle active modules
|
||||
\tPGDN = activate held object
|
||||
</font>"}
|
||||
|
||||
to_chat(src, hotkey_mode)
|
||||
to_chat(src, other)
|
||||
@@ -0,0 +1,118 @@
|
||||
/*
|
||||
/datum/verbs/menu/Example/verb/Example()
|
||||
set name = "" //if this starts with @ the verb is not created and name becomes the command to invoke.
|
||||
set desc = "" //desc is the text given to this entry in the menu
|
||||
//You can not use src in these verbs. It will be the menu at compile time, but the client at runtime.
|
||||
*/
|
||||
|
||||
GLOBAL_LIST_EMPTY(menulist)
|
||||
|
||||
/datum/verbs/menu
|
||||
var/checkbox = CHECKBOX_NONE //checkbox type.
|
||||
var/default //default checked type.
|
||||
//Set to true to append our children to our parent,
|
||||
//Rather then add us as a node (used for having more then one checkgroups in the same menu)
|
||||
|
||||
/datum/verbs/menu/GetList()
|
||||
return GLOB.menulist
|
||||
|
||||
/datum/verbs/menu/HandleVerb(list/entry, verbpath, client/C)
|
||||
var/datum/verbs/menu/verb_true_parent = GLOB.menulist[verblist[verbpath]]
|
||||
var/true_checkbox = verb_true_parent.checkbox
|
||||
if (true_checkbox != CHECKBOX_NONE)
|
||||
var/checkedverb = verb_true_parent.Get_checked(C)
|
||||
if (true_checkbox == CHECKBOX_GROUP)
|
||||
if (verbpath == checkedverb)
|
||||
entry["is-checked"] = TRUE
|
||||
else
|
||||
entry["is-checked"] = FALSE
|
||||
else if (true_checkbox == CHECKBOX_TOGGLE)
|
||||
entry["is-checked"] = checkedverb
|
||||
|
||||
entry["command"] = ".updatemenuchecked \"[verb_true_parent.type]\" \"[verbpath]\"\n[entry["command"]]"
|
||||
entry["can-check"] = TRUE
|
||||
entry["group"] = "[verb_true_parent.type]"
|
||||
return list2params(entry)
|
||||
|
||||
/datum/verbs/menu/proc/Get_checked(client/C)
|
||||
return C.prefs.menuoptions[type] || default || FALSE
|
||||
|
||||
/datum/verbs/menu/proc/Load_checked(client/C) //Loads the checked menu item into a new client. Used by icon menus to invoke the checked item.
|
||||
return
|
||||
|
||||
/datum/verbs/menu/proc/Set_checked(client/C, verbpath)
|
||||
if (checkbox == CHECKBOX_GROUP)
|
||||
C.prefs.menuoptions[type] = verbpath
|
||||
C.prefs.save_preferences()
|
||||
else if (checkbox == CHECKBOX_TOGGLE)
|
||||
var/checked = Get_checked(C)
|
||||
C.prefs.menuoptions[type] = !checked
|
||||
C.prefs.save_preferences()
|
||||
winset(C, "[verbpath]", "is-checked = [!checked]")
|
||||
|
||||
/client/verb/updatemenuchecked(menutype as text, verbpath as text)
|
||||
set name = ".updatemenuchecked"
|
||||
menutype = text2path(menutype)
|
||||
verbpath = text2path(verbpath)
|
||||
if (!menutype || !verbpath)
|
||||
return
|
||||
var/datum/verbs/menu/M = GLOB.menulist[menutype]
|
||||
if (!M)
|
||||
return
|
||||
if (!(verbpath in typesof("[menutype]/verb")))
|
||||
return
|
||||
M.Set_checked(src, verbpath)
|
||||
|
||||
|
||||
/datum/verbs/menu/Icon/Load_checked(client/C) //So we can be lazy, we invoke the "checked" menu item on menu load.
|
||||
var/procpath/verbpath = Get_checked(C)
|
||||
if (!verbpath || !(verbpath in typesof("[type]/verb")))
|
||||
return
|
||||
|
||||
if (copytext(verbpath.name,1,2) == "@")
|
||||
winset(C, null, list2params(list("command" = copytext(verbpath.name,2))))
|
||||
else
|
||||
winset(C, null, list2params(list("command" = replacetext(verbpath.name, " ", "-"))))
|
||||
|
||||
/datum/verbs/menu/Icon/Size
|
||||
checkbox = CHECKBOX_GROUP
|
||||
default = /datum/verbs/menu/Icon/Size/verb/iconstretchtofit
|
||||
|
||||
/datum/verbs/menu/Icon/Size/verb/iconstretchtofit()
|
||||
set name = "@.winset \"mapwindow.map.icon-size=0\""
|
||||
set desc = "&Auto (stretch-to-fit)"
|
||||
|
||||
/datum/verbs/menu/Icon/Size/verb/icon96()
|
||||
set name = "@.winset \"mapwindow.map.icon-size=96\""
|
||||
set desc = "&96x96 (3x)"
|
||||
|
||||
/datum/verbs/menu/Icon/Size/verb/icon64()
|
||||
set name = "@.winset \"mapwindow.map.icon-size=64\""
|
||||
set desc = "&64x64 (2x)"
|
||||
|
||||
/datum/verbs/menu/Icon/Size/verb/icon48()
|
||||
set name = "@.winset \"mapwindow.map.icon-size=48\""
|
||||
set desc = "&48x48 (1.5x)"
|
||||
|
||||
/datum/verbs/menu/Icon/Size/verb/icon32()
|
||||
set name = "@.winset \"mapwindow.map.icon-size=32\""
|
||||
set desc = "&32x32 (1x)"
|
||||
|
||||
|
||||
/datum/verbs/menu/Icon/Scaling
|
||||
checkbox = CHECKBOX_GROUP
|
||||
name = "Scaling Mode"
|
||||
default = /datum/verbs/menu/Icon/Scaling/verb/NN
|
||||
|
||||
/datum/verbs/menu/Icon/Scaling/verb/NN()
|
||||
set name = "@.winset \"mapwindow.map.zoom-mode=distort\""
|
||||
set desc = "Nearest Neighbor"
|
||||
|
||||
/datum/verbs/menu/Icon/Scaling/verb/PS()
|
||||
set name = "@.winset \"mapwindow.map.zoom-mode=normal\""
|
||||
set desc = "Point Sampling"
|
||||
|
||||
/datum/verbs/menu/Icon/Scaling/verb/BL()
|
||||
set name = "@.winset \"mapwindow.map.zoom-mode=blur\""
|
||||
set desc = "Bilinear"
|
||||
|
||||
@@ -0,0 +1,196 @@
|
||||
/// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
/// !!!!!!!!!!HEY LISTEN!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
/// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
// If you modify this file you ALSO need to modify code/modules/goonchat/browserAssets/browserOutput.css
|
||||
// BUT you have to use PX font sizes with are on a x8 scale of these font sizes
|
||||
// Sample font-size: DM: 8 CSS: 64px
|
||||
|
||||
/client/script = {"<style>
|
||||
body {font-family: Verdana, sans-serif;}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {color: #0000ff; font-family: Georgia, Verdana, sans-serif;}
|
||||
|
||||
em {font-style: normal; font-weight: bold;}
|
||||
|
||||
.motd {color: #638500; font-family: Verdana, sans-serif;}
|
||||
.motd h1, .motd h2, .motd h3, .motd h4, .motd h5, .motd h6
|
||||
{color: #638500; text-decoration: underline;}
|
||||
.motd a, .motd a:link, .motd a:visited, .motd a:active, .motd a:hover
|
||||
{color: #638500;}
|
||||
|
||||
.italics { font-style: italic;}
|
||||
|
||||
.bold { font-weight: bold;}
|
||||
|
||||
.prefix { font-weight: bold;}
|
||||
|
||||
.ooc { font-weight: bold;}
|
||||
.adminobserverooc {color: #0099cc; font-weight: bold;}
|
||||
.adminooc {color: #700038; font-weight: bold;}
|
||||
|
||||
.adminobserver {color: #996600; font-weight: bold;}
|
||||
.admin {color: #386aff; font-weight: bold;}
|
||||
|
||||
.name { font-weight: bold;}
|
||||
|
||||
.say {}
|
||||
.deadsay {color: #5c00e6;}
|
||||
.binarysay {color: #20c20e; background-color: #000000; display: block;}
|
||||
.binarysay a {color: #00ff00;}
|
||||
.binarysay a:active, .binarysay a:visited {color: #88ff88;}
|
||||
.radio {color: #008000;}
|
||||
.sciradio {color: #993399;}
|
||||
.comradio {color: #948f02;}
|
||||
.secradio {color: #a30000;}
|
||||
.medradio {color: #337296;}
|
||||
.engradio {color: #fb5613;}
|
||||
.suppradio {color: #a8732b;}
|
||||
.servradio {color: #6eaa2c;}
|
||||
.syndradio {color: #6d3f40;}
|
||||
.centcomradio {color: #686868;}
|
||||
.aiprivradio {color: #ff00ff;}
|
||||
.redteamradio {color: #ff0000;}
|
||||
.blueteamradio {color: #0000ff;}
|
||||
|
||||
.yell { font-weight: bold;}
|
||||
|
||||
.alert {color: #ff0000;}
|
||||
h1.alert, h2.alert {color: #000000;}
|
||||
|
||||
.emote { font-style: italic;}
|
||||
.selecteddna {color: #ffffff; background-color: #001B1B}
|
||||
|
||||
.attack {color: #ff0000;}
|
||||
.disarm {color: #990000;}
|
||||
.passive {color: #660000;}
|
||||
|
||||
.userdanger {color: #ff0000; font-weight: bold; font-size: 3;}
|
||||
.danger {color: #ff0000;}
|
||||
.warning {color: #ff0000; font-style: italic;}
|
||||
.boldwarning {color: #ff0000; font-style: italic; font-weight: bold}
|
||||
.announce {color: #228b22; font-weight: bold;}
|
||||
.boldannounce {color: #ff0000; font-weight: bold;}
|
||||
.greenannounce {color: #00ff00; font-weight: bold;}
|
||||
.rose {color: #ff5050;}
|
||||
.info {color: #0000CC;}
|
||||
.notice {color: #000099;}
|
||||
.boldnotice {color: #000099; font-weight: bold;}
|
||||
.adminnotice {color: #0000ff;}
|
||||
.adminhelp {color: #ff0000; font-weight: bold;}
|
||||
.unconscious {color: #0000ff; font-weight: bold;}
|
||||
.suicide {color: #ff5050; font-style: italic;}
|
||||
.green {color: #03ff39;}
|
||||
.nicegreen {color: #14a833;}
|
||||
.shadowling {color: #3b2769;}
|
||||
.cult {color: #960000;}
|
||||
.cultlarge {color: #960000; font-weight: bold; font-size: 3;}
|
||||
.narsie {color: #960000; font-weight: bold; font-size: 15;}
|
||||
.narsiesmall {color: #960000; font-weight: bold; font-size: 6;}
|
||||
.colossus {color: #7F282A; font-size: 5;}
|
||||
.hierophant {color: #660099; font-weight: bold; font-style: italic;}
|
||||
.hierophant_warning {color: #660099; font-style: italic;}
|
||||
.purple {color: #5e2d79;}
|
||||
.holoparasite {color: #35333a;}
|
||||
|
||||
.revennotice {color: #1d2953;}
|
||||
.revenboldnotice {color: #1d2953; font-weight: bold;}
|
||||
.revenbignotice {color: #1d2953; font-weight: bold; font-size: 3;}
|
||||
.revenminor {color: #823abb}
|
||||
.revenwarning {color: #760fbb; font-style: italic;}
|
||||
.revendanger {color: #760fbb; font-weight: bold; font-size: 3;}
|
||||
.umbra {color: #5000A0;}
|
||||
.umbra_emphasis {color: #5000A0; font-weight: bold; font-style: italic;}
|
||||
.umbra_large {color: #5000A0; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
|
||||
.deconversion_message {color: #5000A0; font-size: 3; font-style: italic;}
|
||||
|
||||
.brass {color: #BE8700;}
|
||||
.heavy_brass {color: #BE8700; font-weight: bold; font-style: italic;}
|
||||
.large_brass {color: #BE8700; font-size: 3;}
|
||||
.big_brass {color: #BE8700; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.ratvar {color: #BE8700; font-size: 6; font-weight: bold; font-style: italic;}
|
||||
.alloy {color: #42474D;}
|
||||
.heavy_alloy {color: #42474D; font-weight: bold; font-style: italic;}
|
||||
.nezbere_large {color: #42474D; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.nezbere {color: #42474D; font-weight: bold; font-style: italic;}
|
||||
.nezbere_small {color: #42474D;}
|
||||
.sevtug_large {color: #AF0AAF; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.sevtug {color: #AF0AAF; font-weight: bold; font-style: italic;}
|
||||
.sevtug_small {color: #AF0AAF;}
|
||||
.inathneq_large {color: #1E8CE1; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.inathneq {color: #1E8CE1; font-weight: bold; font-style: italic;}
|
||||
.inathneq_small {color: #1E8CE1;}
|
||||
.nzcrentr_large {color: #DAAA18; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.nzcrentr {color: #DAAA18; font-weight: bold; font-style: italic;}
|
||||
.nzcrentr_small {color: #DAAA18;}
|
||||
.neovgre_large {color: #6E001A; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.neovgre {color: #6E001A; font-weight: bold; font-style: italic;}
|
||||
.neovgre_small {color: #6E001A;}
|
||||
|
||||
.newscaster {color: #800000;}
|
||||
.ghostalert {color: #5c00e6; font-style: italic; font-weight: bold;}
|
||||
|
||||
.alien {color: #543354;}
|
||||
.noticealien {color: #00c000;}
|
||||
.alertalien {color: #00c000; font-weight: bold;}
|
||||
.changeling {color: #800080; font-style: italic;}
|
||||
|
||||
.spider {color: #4d004d;}
|
||||
|
||||
.interface {color: #330033;}
|
||||
|
||||
.sans {font-family: "Comic Sans MS", cursive, sans-serif;}
|
||||
.papyrus {font-family: "Papyrus", cursive, sans-serif;}
|
||||
.robot {font-family: "Courier New", cursive, sans-serif;}
|
||||
|
||||
.command_headset {font-weight: bold; font-size: 3;}
|
||||
.small {font-size: 1;}
|
||||
.big {font-size: 3;}
|
||||
.reallybig {font-size: 4;}
|
||||
.extremelybig {font-size: 5;}
|
||||
.greentext {color: #00FF00; font-size: 3;}
|
||||
.redtext {color: #FF0000; font-size: 3;}
|
||||
.clown {color: #FF69Bf; font-size: 3; font-family: "Comic Sans MS", cursive, sans-serif; font-weight: bold;}
|
||||
.his_grace {color: #15D512; font-family: "Courier New", cursive, sans-serif; font-style: italic;}
|
||||
.spooky {color: #FF9100;}
|
||||
.velvet {color: #660015; font-weight: bold; animation: velvet 5000ms infinite;}
|
||||
@keyframes velvet {
|
||||
0% { color: #400020; }
|
||||
40% { color: #FF0000; }
|
||||
50% { color: #FF8888; }
|
||||
60% { color: #FF0000; }
|
||||
100% { color: #400020; }
|
||||
}
|
||||
|
||||
.hypnophrase {color: #3bb5d3; font-weight: bold; animation: hypnocolor 1500ms infinite;}
|
||||
@keyframes hypnocolor {
|
||||
0% { color: #0d0d0d; }
|
||||
25% { color: #410194; }
|
||||
50% { color: #7f17d8; }
|
||||
75% { color: #410194; }
|
||||
100% { color: #3bb5d3; }
|
||||
}
|
||||
|
||||
.phobia {color: #dd0000; font-weight: bold; animation: phobia 750ms infinite;}
|
||||
@keyframes phobia {
|
||||
0% { color: #0d0d0d; }
|
||||
50% { color: #dd0000; }
|
||||
100% { color: #0d0d0d; }
|
||||
}
|
||||
|
||||
.icon {height: 1em; width: auto;}
|
||||
|
||||
.memo {color: #638500; text-align: center;}
|
||||
.memoedit {text-align: center; font-size: 2;}
|
||||
.abductor {color: #800080; font-style: italic;}
|
||||
.mind_control {color: #A00D6F; font-size: 3; font-weight: bold; font-style: italic;}
|
||||
.slime {color: #00CED1;}
|
||||
.drone {color: #848482;}
|
||||
.monkey {color: #975032;}
|
||||
.swarmer {color: #2C75FF;}
|
||||
.resonate {color: #298F85;}
|
||||
|
||||
.monkeyhive {color: #774704;}
|
||||
.monkeylead {color: #774704; font-size: 2;}
|
||||
</style>"}
|
||||
Reference in New Issue
Block a user