1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Using grid to images; Better messages

This commit is contained in:
Webysther Nunes
2016-06-02 17:57:28 -03:00
parent 0d330bbd03
commit 431540b7ff
2 changed files with 60 additions and 44 deletions

View File

@@ -27,23 +27,25 @@ function random_bgcolor($min, $max)
";\"";
}
?>
<h1>Download</h1>
<p>
Right click on one of the images and select "Save Image As" to save the image.
Click on link below image and save the image.
</p>
<p class="warn">
Do not just include the graphic from our servers on your page!
Copy the image to your site please.
</p>
<p>
If you're wondering about the font we used, it's called
<a href="http://www.myfonts.com/fonts/bitstream/handel-gothic/">Handel
Gothic</a>.
</p>
<ul>
<li>
Copy the image to your server.
</li>
<li>
Prefer SVG and convert to width/format you need.
</li>
<li>
The font used is
<a href="http://www.myfonts.com/fonts/bitstream/handel-gothic/">Handel
Gothic</a>.
</li>
</ul>
<h2>Licensing</h2>
@@ -55,40 +57,33 @@ function random_bgcolor($min, $max)
<ul>
<li>
<b>Attribution</b> — You must give appropriate credit, provide a link
<strong>Attribution</strong> — You must give appropriate credit, provide a link
to the license, and indicate if changes were made. You may do so in any
reasonable manner, but not in any way that suggests the licensor endorses
you or your use.
</li>
<li>
<b>ShareAlike</b> — If you remix, transform, or build upon the material,
<strong>ShareAlike</strong> — If you remix, transform, or build upon the material,
you must distribute your contributions under the same license as the original.
</li>
</ul>
</p>
<div class="center logo-list">
<table border="0" width="90%" cellspacing="2" cellpadding="10" id="logos">
<tr>
<td class="logo">
<div class="logo-list row">
<div class="col center">
<img src="/images/logos/new-php-logo.png" width="200" alt="php logo">
<br>
<a href="http://php.net/images/logos/new-php-logo.svg">SVG format</a> |
<a href="http://php.net/images/logos/new-php-logo.png">PNG format</a>
</td>
<td class="logo">
<a href="http://php.net/images/logos/new-php-logo.svg">SVG</a> |
<a href="http://php.net/images/logos/new-php-logo.png">PNG</a>
</div>
<div class="col center">
<img src="/images/logos/php-logo-bigger.png" width="150" alt="php logo without background">
<br>
Without Background
<br>
<a href="http://php.net/images/logos/php-logo.svg">SVG format</a> |
<a href="http://php.net/images/logos/php-logo-bigger.png">PNG format</a>
</td>
</tr>
</table>
<a href="http://php.net/images/logos/php-logo.svg">SVG</a> |
<a href="http://php.net/images/logos/php-logo-bigger.png">PNG</a>
</div>
</div>
<?php site_footer();

View File

@@ -8,7 +8,7 @@
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
.clearfix {
*zoom: 1;
}
@@ -288,7 +288,7 @@ code,
pre.info,
.docs .classsynopsis,
.docs .classsynopsis code {
font: normal 0.875rem/1.5rem "Fira Mono", "Source Code Pro", monospace;
font: normal 0.875rem/1.5rem "Fira Mono", "Source Code Pro", monospace;
word-wrap: break-word;
}
p code,
@@ -1007,7 +1007,7 @@ fieldset {
z-index: 2 !important;
}
.tt-dropdown-menu {
.tt-dropdown-menu {
background: none repeat scroll 0 0 #E2E4EF;
border-bottom: 1px solid #C4C9DF;
border-radius: 0 0 2px 2px;
@@ -1417,7 +1417,7 @@ ul.chunklist_children {
.docs .layout-menu ul.parent-menu-list > li {
margin-top:0;
margin-bottom:0;
}
.docs .layout-menu ul.parent-menu-list > li > a {
border:0;
@@ -1585,7 +1585,7 @@ div.soft-deprecation-notice blockquote.sidebar {
#breadcrumbs-inner,
#goto div,
#trick div,
#layout,
#layout,
body > footer .footer-content {
width:1440px;
}
@@ -1600,20 +1600,20 @@ div.soft-deprecation-notice blockquote.sidebar {
.navbar-fixed-top .container {
width:auto;
}
.navbar-search {
float:left;
clear: both;
margin-top: 0;
padding: 0px 10px 10px 10px;
}
.navbar .nav {
margin-right: 0;
}
#intro .download-php {
margin: 0 !important;
#intro .download-php {
margin: 0 !important;
}
#mainmenu-toggle-overlay {
@@ -1653,7 +1653,7 @@ div.soft-deprecation-notice blockquote.sidebar {
display: block;
margin-left: 12px;
}
.navbar .nav {
clear: both;
float: none;
@@ -1665,14 +1665,14 @@ div.soft-deprecation-notice blockquote.sidebar {
-ms-transition: max-height 400ms;
transition: max-height 400ms;
}
.navbar .nav > li, .footmenu > li {
float: none;
display: block;
text-align: center;
}
.navbar .nav > li a, .footmenu > li > a {
width: 100%;
display: block;
@@ -1867,7 +1867,28 @@ aside.tips div.inner {
list-style-type: none;
}
/* https://github.com/mourner/dead-simple-grid */
.row .row { margin: 0 -1.5em; }
.col { padding: 1.5em; }
.row:after {
content: "";
clear: both;
display: table;
}
@media only screen { .col {
float: left;
width: 100%;
box-sizing: border-box;
}}
@media only screen and (min-width: 30em) {
.col { width: 40%; }
}
/* }}} */
/* vim: set ts=2 sw=2 et: */