about summary refs log tree commit diff stats
path: root/src/subway_map.h
Commit message (Expand)AuthorAgeFilesLines
* Added a scrollbar to subway reportsStar Rauchenberger2025-02-081-2/+5
* Fixed remaining thread unsafe APState/IPCState readsStar Rauchenberger2024-12-201-0/+6
* Prevent crash from opening subway map too quicklyStar Rauchenberger2024-06-061-2/+2
* Added help button for subway mapStar Rauchenberger2024-06-061-0/+4
* Subway: Click to activate scroll / sticky popupStar Rauchenberger2024-06-061-0/+6
* Zoom in/out menu items with keyboard shortcutsStar Rauchenberger2024-05-191-0/+3
* Zoom sliderStar Rauchenberger2024-05-191-0/+4
* Zoom in and scroll subway mapStar Rauchenberger2024-05-181-0/+15
* Coordinate transformation functionsStar Rauchenberger2024-05-181-0/+3
* Added door popups that report requirementsStar Rauchenberger2024-05-161-0/+2
* Get checked paintings from serverStar Rauchenberger2024-05-151-2/+0
* Hovered connections on subway map!Star Rauchenberger2024-05-141-0/+12
* Subway map hover detection with a quadtreeStar Rauchenberger2024-05-121-0/+10
* Higher quality + owl picturesStar Rauchenberger2024-05-121-2/+2
* Started making subway mapStar Rauchenberger2024-05-121-0/+35
/ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/*
       444444444  
      4::::::::4  
     4:::::::::4  
    4::::44::::4  
   4::::4 4::::4   Four Island
  4::::4  4::::4  
 4::::4   4::::4   Written and maintained by Starla Insigna
4::::444444::::444
4::::::::::::::::4  theme/css/holiday.php
4444444444:::::444
          4::::4   Please do not use, reproduce or steal the
          4::::4   contents of this file without explicit
          4::::4   permission from Hatkirby.
        44::::::44
        4::::::::4
        4444444444
*/

if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);}

require('headerproc.php');

if (sd_isSpecialDay('Four Island A'))
{
	$bgimgm = 'islandYearly';
} elseif (sd_isSpecialDay('Christmas Eve'))
{
	$bgimgm = 'christmasEve';
	$bgcolor = 'black';
} elseif (sd_isSpecialDay('Christmas Day'))
{
	$bgimgm = 'christmas';
} elseif (sd_isSpecialDay('New Years Eve'))
{
	$bgimgm = 'newYearsEve';
	$bgcolor = 'black';
} elseif (sd_isSpecialDay('Veterans Day'))
{
	$bgimgm = 'veterans';
} elseif (sd_isSpecialDay('Independance Day'))
{
	$bgimgm = '4ofjuly';
	$bgcolor = 'black';
} elseif (sd_isSpecialDay('Fathers Day'))
{
	$bgimgm = 'fathers';
} elseif (sd_isSpecialDay('Hatkirbys B-Day'))
{
	$bgimgm = 'hatkirbybday';
} elseif (sd_isSpecialDay('Kirby Week'))
{
	$bgimgm = 'kirbyweek';
} elseif (sd_isSpecialDay('Memorial Day'))
{
	$bgimgm = 'memorial';
	$bgcolor = 'gray';
} elseif (sd_isSpecialDay('Mothers Day'))
{
	$bgimgm = 'mothers';
} elseif (sd_isSpecialDay('New Years Day'))
{
	$bgimgm = 'newYear';
} elseif (sd_isSpecialDay('Ash Wednesday'))
{
	$bgimgm = 'ashWeds';
} elseif (sd_isSpecialDay('Columbus Day'))
{
	$bgimgm = 'columbus';
} elseif (sd_isSpecialDay('Easter'))
{
	$bgimgm = 'easter';
} elseif (sd_isSpecialDay('Flag Day'))
{
	$bgimgm = 'flagDay';
} elseif (sd_isSpecialDay('Good Friday'))
{
	$bgimgm = 'goodFriday';
} elseif (sd_isSpecialDay('Groundhog Day'))
{
	$bgimgm = 'groundhog';
} elseif (sd_isSpecialDay('Halloween'))
{
	$bgimgm = 'halloween';
	$bgcolor = 'black';
} elseif (sd_isSpecialDay('Mardi Gras'))
{
	$bgimgm = 'mardiGras';
} elseif (sd_isSpecialDay('Martin Luther King Day'))
{
	$bgimgm = 'martinLuther';
} elseif (sd_isSpecialDay('Valentines Day'))
{
	$bgimgm = 'valentines';
} else {
	$bgimgm = 'island6';
}

$bodyID = $_GET['id'];
if (!isset($bgcolor))
{
	$bgcolor='aqua';

	include("layouts/4.5/day.css");
} else {
	include("layouts/4.5/night.css");
}

?>

body {
 background-image: url(/theme/images/backgrounds/<?php echo($bgimgm); ?>.PNG) !important;
}