mirror of
https://github.com/dannyvankooten/AltoRouter.git
synced 2025-08-05 16:07:32 +02:00
increase font sizes
This commit is contained in:
@@ -2,10 +2,8 @@
|
|||||||
title: AltoRouter - PHP Router that supports REST, dynamic and reversed routing
|
title: AltoRouter - PHP Router that supports REST, dynamic and reversed routing
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
<h1>
|
|
||||||
<a name="altorouter-" class="anchor" href="#altorouter-"><span class="octicon octicon-link"></span></a>AltoRouter <a href="https://travis-ci.org/dannyvankooten/AltoRouter"><img src="https://api.travis-ci.org/dannyvankooten/AltoRouter.png" alt="Build Status"></a>
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
|
<h1>AltoRouter</h1>
|
||||||
<p class="intro">AltoRouter is a small but powerful routing class for PHP 5.3+, heavily inspired by <a href="https://github.com/chriso/klein.php/">klein.php</a>.</p>
|
<p class="intro">AltoRouter is a small but powerful routing class for PHP 5.3+, heavily inspired by <a href="https://github.com/chriso/klein.php/">klein.php</a>.</p>
|
||||||
|
|
||||||
{% highlight php startinline %}
|
{% highlight php startinline %}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
padding:50px;
|
padding:50px;
|
||||||
font:14px/1.5 Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font:16px/1.5 Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
color:#777;
|
color:#777;
|
||||||
font-weight:300;
|
font-weight:300;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
color:#222;
|
color:#222;
|
||||||
margin:0 0 20px;
|
margin:0 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p, ul, ol, table, pre, dl {
|
p, ul, ol, table, pre, dl, figure {
|
||||||
margin:0 0 20px;
|
margin:0 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3 {
|
h1, h2, h3, h4 {
|
||||||
line-height:1.1;
|
line-height:1.1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,12 +68,12 @@ blockquote {
|
|||||||
code, pre {
|
code, pre {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
color:#333;
|
color:#333;
|
||||||
font-size:12px;
|
font-size:14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
padding:8px 15px;
|
padding:8px 15px;
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
border:1px solid #e5e5e5;
|
border:1px solid #e5e5e5;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
@@ -162,33 +162,33 @@ h1 small {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media print, screen and (max-width: 960px) {
|
@media print, screen and (max-width: 960px) {
|
||||||
|
|
||||||
div.wrapper {
|
div.wrapper {
|
||||||
width:auto;
|
width:auto;
|
||||||
margin:0;
|
margin:0;
|
||||||
}
|
}
|
||||||
|
|
||||||
header, section, footer {
|
header, section, footer {
|
||||||
float:none;
|
float:none;
|
||||||
position:static;
|
position:static;
|
||||||
width:auto;
|
width:auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
padding-right:320px;
|
padding-right:320px;
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
border:1px solid #e5e5e5;
|
border:1px solid #e5e5e5;
|
||||||
border-width:1px 0;
|
border-width:1px 0;
|
||||||
padding:20px 0;
|
padding:20px 0;
|
||||||
margin:0 0 20px;
|
margin:0 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header a small {
|
header a small {
|
||||||
display:inline;
|
display:inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
header ul {
|
header ul {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
right:50px;
|
right:50px;
|
||||||
@@ -200,15 +200,15 @@ h1 small {
|
|||||||
body {
|
body {
|
||||||
word-wrap:break-word;
|
word-wrap:break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
padding:0;
|
padding:0;
|
||||||
}
|
}
|
||||||
|
|
||||||
header ul, header p.view {
|
header ul, header p.view {
|
||||||
position:static;
|
position:static;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre, code {
|
pre, code {
|
||||||
word-wrap:normal;
|
word-wrap:normal;
|
||||||
}
|
}
|
||||||
@@ -218,7 +218,7 @@ h1 small {
|
|||||||
body {
|
body {
|
||||||
padding:15px;
|
padding:15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header ul {
|
header ul {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user