Commit: c3e2580ce0daeb0d261850fcd8c715c258fb09f2 Author: Sobak <[email protected]> Fri, 3 Jan 2014 23:18:41 +0100 Parents: 83510346f5fc37a823221ee42bf8e41fd5735caf Branches: master
Link: http://git.php.net/?p=web/people.git;a=commitdiff;h=c3e2580ce0daeb0d261850fcd8c715c258fb09f2 Log: Unused files removed Changed paths: D include/footer.inc D include/header.inc D styles.css Diff: diff --git a/include/footer.inc b/include/footer.inc deleted file mode 100644 index 9b12328..0000000 --- a/include/footer.inc +++ /dev/null @@ -1,18 +0,0 @@ -<?php /* vim: set ft=html et ts=2 sw=2: : */ ?> -</section> -<footer> - <nav class="fullscreen"> - <ul> - <li><a href="//php.net/copyright">Copyright © 2001-2013 The PHP Group</a></li> - <li><a href="//php.net/site">Other PHP.net sites</a></li> - <li><a href="//php.net/privacy">Privacy policy</a></li> - </ul> - </nav> -</footer> - - <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> - <script type="text/javascript" src="js/jquery.autocomplete.min.js"></script> - <script type="text/javascript" src="js/userlisting.php"></script> - <script type="text/javascript" src="js/search.js"></script> -</body> -</html> diff --git a/include/header.inc b/include/header.inc deleted file mode 100644 index 88c650f..0000000 --- a/include/header.inc +++ /dev/null @@ -1,33 +0,0 @@ -<!DOCTYPE html> -<html> -<head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - - <title>PHP: <?=$title ?></title> - <link type="text/css" media="all" rel="stylesheet" href="/styles.css?v=3"> - <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic,600italic|Source+Code+Pro&subset=latin,latin-ext" rel="stylesheet" type="text/css"> - <link rel="shortcut icon" href="//php.net/favicon.ico"> -</head> -<body> - -<header> - <div id="mainmenu-toggle-overlay"></div> - <input type="checkbox" id="mainmenu-toggle"> - <nav class="fullscreen"> - <div class="mainscreen"> - <a href="/" class="home"><img src="//php.net/images/logo.php" width="48" height="24" alt="php"><span class="subdomain">people</span></a> - <ul> - <li><a href="/user.php">Users</a></li> - </ul> - </div> - <div class="secondscreen"> - <form method="get" action="user.php"> - <input type="search" placeholder="Search profiles" name="username" class="search"> - </form> - </div> - </nav> -</header> - -<section class="fullscreen"> diff --git a/styles.css b/styles.css deleted file mode 100644 index 30f2905..0000000 --- a/styles.css +++ /dev/null @@ -1,245 +0,0 @@ -/* vim: set expandtab shiftwidth=2 softtabstop=2 tabstop=2 fdm=marker : */ - - -body { - color: #444; - font-family: Tahoma, Arial, sans-serif, serif, monospace; - background-color: #fff; - height: 100%; -} -header { - top: 0px; - left: 0px; - position: fixed; - width: 100%; - - border-bottom: 0.25em solid #669; - background-color: #99c; - box-shadow: 0 .25em .25em rgba(0,0,0,.1); - z-index: 1; -} -footer { - width: 100%; - border-top: .25em solid #99C; - background-color: #262626; -} -nav { - line-height: 2.5; -} -nav img { - vertical-align: middle; -} -nav ul { - display: inline-block; - list-style: none; - list-style-type: none; - margin: 0; -} -nav li { - display: inline-block; -} -nav a { - display: inline-block; - font-weight: normal; - padding: 0 0.75em; - color: #eef; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - text-decoration: none; - font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; -} -nav a:hover { - color: #fff; -} -nav form { - display: inline-block; - width: 100%; -} -nav input { - width: 100%; - color: #333; - font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; - font-size: 1em; - text-shadow: 0 1px 0 #ffffff; - border: 0; - border-radius: 2px; - box-shadow: inset 0 1px 2px rgba(0,0,0,.2); - line-height: 1.5; -} -/* Pad the #fragment below the header */ -section *[id] { - margin-top: -50px; - padding-top: 50px; -} -section.fullscreen { - /* Force the content below the fixed header */ - display: block; - height: 100%; -} -.secondscreen { - vertical-align: top; - display: inline-block; -} -.secondscreen .panel { - background: #f0f0f0; - border: 1px solid #e3e3e3; - border-radius: 2px; -} -.secondscreen a { - color: #333; - display: block; - padding: .75em 1em; -} - -/* {{{ Stolen from http://www.devbridge.com/projects/autocomplete/jquery/ */ -.autocomplete-w1 { - background: url(images/shadow.png) no-repeat bottom right; - position: absolute; - top: 0px; - left: 0px; - margin: 6px 0 0 6px; - z-index: 1; -} -.autocomplete { - border: 1px solid #999; - background: #FFF; - cursor: default; - text-align: left; - max-height: 270px; - overflow: auto; - margin: -6px 6px 6px -6px; -} -.autocomplete .selected { - background:#F0F0F0; -} -.autocomplete div { - padding: 2px 5px; - white-space: nowrap; -} -.autocomplete strong { - font-weight: normal; - color: #3399FF; -} - -/* }}} */ - -/* Grab attention with a warning */ -.warning { - background: #f9ecf2; - border: 1px solid #eecdde; - - padding: 1em; - margin: 0px; - - text-align: center; - font-weight: bold; - font-size:1.17em; - - color: #660000; -} - -/* {{{ widths blatantly stolen from bootstrap */ -.fullscreen { - width: 940px; - margin-right: auto; - margin-left: auto; - *zoom: 1; -} -.mainscreen, .secondscreen { - display: inline-block; -} -.mainscreen { - width: 700px; -} -.secondscreen { - width: 220px; -} -body { - margin: 50px 0 0 0; -} -#mainmenu-toggle-overlay, #mainmenu-toggle { - display: none; -} -#mainmenu-toggle:checked + nav { - /* This just has to be big enough to cover whatever's in nav. */ - max-height: 50em; -} -@media (max-width:465px) { - - #mainmenu-toggle-overlay { - background: #669 url(http://php.net/images/mobile-menu.png) no-repeat center center; - float: right; - display: block; - height: 32px; - width: 34px; - margin-top: 10px; - margin-right: 10px; - border-radius: 5px; - } - #mainmenu-toggle { - height: 32px; - width: 34px; - line-height: 32px; - margin-top: 10px; - margin-right: -34px; - float: right; - border-bottom: 0 none; - display: inline-block; - opacity: 0; - } - nav { - max-height: 0; - overflow: hidden; - } - nav ul, nav li, nav a { - display: block; - padding: 0; - } - header { - position: absolute; - } -} -@media (max-width: 767px) { - .fullscreen { - width: auto; - padding: 0px 10px 0px 10px; - } - section.mainscreen { - width: auto; - } - .secondscreen { - width: 100%; - } - body { - margin: 100px 0 0 0; - } -} -@media (min-width: 768px) and (max-width: 979px) { - .fullscreen { - width: 724px; - } - .mainscreen { - width: 538px; - } - .secondscreen { - width: 166px; - } -} -@media (min-width: 1200px) { - .fullscreen { - width: 1170px; - } - .mainscreen { - width: 870px; - } - .secondscreen { - margin-left: 10px; - width: 270px; - } -} - -@media (min-width: 1500px) { - .fullscreen { - width: 1440px; - } -} -/* }}} */ -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
