Improved website.
This commit is contained in:
parent
c496d608dd
commit
ddf034e3a2
|
@ -1,8 +1,8 @@
|
|||
[](https://travis-ci.org/jsmaniac/phc)
|
||||
[](https://coveralls.io/github/jsmaniac/phc)
|
||||
[](http://jsmaniac.github.io/phc/)
|
||||
[](https://travis-ci.org/jsmaniac/phc)
|
||||
[](https://coveralls.io/github/jsmaniac/phc)
|
||||
[](http://jsmaniac.github.io/phc/)
|
||||
|
||||
This project is written in Racket using Literate Programming. See the
|
||||
This project is written in Typed/Racket using Literate Programming. See the
|
||||
[online documentation](http://jsmaniac.github.io/phc/) if you want to dig into
|
||||
the source.
|
||||
|
||||
|
|
84
graph-lib/lib/doc/fork.rkt
Normal file
84
graph-lib/lib/doc/fork.rkt
Normal file
|
@ -0,0 +1,84 @@
|
|||
#lang racket
|
||||
|
||||
(require scribble/manual
|
||||
(only-in scribble/core make-style)
|
||||
(only-in scribble/html-properties alt-tag attributes))
|
||||
|
||||
(provide forkongithub)
|
||||
|
||||
(define css-code
|
||||
#<<EOF
|
||||
#forkongithub a{
|
||||
background:#007200;
|
||||
color:#fff;
|
||||
text-decoration:none;
|
||||
font-family:arial,sans-serif;
|
||||
text-align:center;
|
||||
font-weight:bold;
|
||||
font-size:1rem;
|
||||
line-height:2rem;
|
||||
position:relative;
|
||||
/* transition:0.5s; */
|
||||
}
|
||||
#forkongithub a:hover{
|
||||
background:#00802B;
|
||||
color:#fff;
|
||||
}
|
||||
#forkongithub a{
|
||||
border-radius: 1ex;
|
||||
box-shadow: inset 0px -1px 4px rgba(255,255,255,0.8);
|
||||
padding:6.5px 10px 5px 10px;
|
||||
}
|
||||
@media screen and (min-width:720px){
|
||||
#forkongithub{
|
||||
position:absolute;
|
||||
display:block;
|
||||
top:0;
|
||||
right:0;
|
||||
width:220px;
|
||||
overflow:hidden;
|
||||
height:220px;
|
||||
z-index:9999;
|
||||
}
|
||||
#forkongithub a{
|
||||
padding:6.5px 40px 5px 40px;
|
||||
width:210px;
|
||||
position:absolute;
|
||||
top:60px;
|
||||
right:-67px;
|
||||
transform:rotate(45deg);
|
||||
-webkit-transform:rotate(45deg);
|
||||
-ms-transform:rotate(45deg);
|
||||
-moz-transform:rotate(45deg);
|
||||
-o-transform:rotate(45deg);
|
||||
box-shadow: 0px 5px 4px rgba(0,0,0,0.8);
|
||||
}
|
||||
#forkongithub a::before,
|
||||
#forkongithub a::after{
|
||||
content:"";
|
||||
width:100%;
|
||||
display:block;
|
||||
position:absolute;
|
||||
top:2px;
|
||||
left:0;
|
||||
height:2px;
|
||||
background: linear-gradient(90deg, transparent 50%, #bbb 50%)
|
||||
repeat scroll 0% 0% / 10px;
|
||||
}
|
||||
#forkongithub a::after{
|
||||
bottom:2px;
|
||||
top:auto;
|
||||
}
|
||||
}
|
||||
EOF
|
||||
)
|
||||
|
||||
(define (forkongithub href text)
|
||||
(elem
|
||||
(elem #:style (make-style #f (list (alt-tag "style")))
|
||||
css-code)
|
||||
(elem #:style (make-style #f (list (alt-tag "span")
|
||||
(attributes '((id . "forkongithub")))))
|
||||
(elem #:style (make-style #f (list (alt-tag "a")
|
||||
(attributes `((href . ,href)))))
|
||||
text))))
|
|
@ -1,15 +1,19 @@
|
|||
#lang scribble/manual
|
||||
@(require "../lib/doc.rkt")
|
||||
@(require "../lib/doc/fork.rkt")
|
||||
@doc-lib-setup
|
||||
|
||||
@title[#:style manual-doc-style]{Ph.C}
|
||||
|
||||
@forkongithub["https://github.com/jsmaniac/phc/"]{Fork me on GitHub!}
|
||||
|
||||
@hyperlink["https://travis-ci.org/jsmaniac/phc"]{
|
||||
@remote-image["https://img.shields.io/travis/jsmaniac/phc.svg"]{
|
||||
Build Status}}
|
||||
Build Status,}}
|
||||
@hyperlink["https://coveralls.io/github/jsmaniac/phc?branch=master"]{
|
||||
@remote-image["https://img.shields.io/coveralls/jsmaniac/phc.svg"]{
|
||||
Coverage Status}}
|
||||
Coverage Status.}}
|
||||
|
||||
|
||||
@;@(table-of-contents)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user