Skip to content

Commit

Permalink
Doc: Change the project page (for github.io)
Browse files Browse the repository at this point in the history
  • Loading branch information
sttk committed Feb 13, 2022
1 parent b90046d commit 47d8c91
Show file tree
Hide file tree
Showing 10 changed files with 438 additions and 38 deletions.
39 changes: 39 additions & 0 deletions docs/images/W3C.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/ant_logo_large.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/github-icon-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/logo-b6e1ef6e.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/logo_crop-mid-blue-background.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/tomcat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions docs/images/w3c_home.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/xslet-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
188 changes: 188 additions & 0 deletions docs/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
@charset "utf-8";

html {
font-size: 16px;
}

body {
margin: 0rem;
padding: 0rem;
background-color: #fe9;
}

a[href] {
color: black;
}

nav {
position: fixed;
top: 0rem;
left: 0rem;;
width: 100vw;
height: 4rem;
border-bottom: solid #ccc 1px;
background-color: white;
}
nav > ul {
display: flex;
margin: 0rem;
padding: 0rem 8rem;
}
nav > ul > li {
flex: auto;
list-style: none;
line-height: 4rem;
text-align: center;
vertical-align: middle;
}

img#logo {
position: fixed;
left: 2rem;
top: 0.2rem;
width: 3.5rem;
height: 3.5rem;
border: solid 1px #ccc;
border-radius: 0.4rem;
}

main {
padding: 1rem;
}

header {
margin-top: 4rem;
padding-left: 2rem;
padding-bottom: 1rem;
}

header > h1 {
padding: 1rem 0rem 0.5rem;
margin: 0rem;
font-size: 3rem;
}
header > h1 > span.version {
font-size: 1.8rem;
padding: 0rem;
margin: 0rem;
}
header > p {
line-height: 1.3rem;
padding: 0rem;
margin: 0.5rem 0rem;
}

a[name] {
position: relative;
top: -4rem;
}

section {
padding-bottom: 1rem;
}
section > h2 {
border-top: solid 1px white;
font-size: 1.6rem;
padding: 1rem 0rem 0.5rem 1rem;
margin: 0rem;
}
section > h3 {
font-size: 1.2rem;
padding: 0.5rem 0rem 0.5rem 1rem;
margin: 2rem 0rem 0rem;
}
section > p {
margin-left: 1.3rem;
}

section > ul {
margin-left: 2.3rem;
padding: 0rem;
}

div.code {
font-family: monospace;
font-size: 0.8rem;
padding: 0.5rem 1rem;
background-color: #eee;
display: inline-block;
border-radius: 0.4rem;
}

a#xslutil::after, a#xsldoc::after, a#xslet::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/github-icon-1.svg');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#xslt1::after, a#xpath1::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/w3c_home.svg');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#xslt3::after, a#xpath3::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/W3C.svg');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#saxon::after {
content: '';
display: inline-block;
width: 5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/logo_crop-mid-blue-background.gif');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#ant::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/ant_logo_large.gif');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#tomcat::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/tomcat.png');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
a#sass::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 0.9rem;
vertical-align: middle;
margin-left: 0.2rem;
background: url('./images/logo-b6e1ef6e.svg');
background-size: auto 0.9rem;
background-repeat: no-repeat;
}
Loading

0 comments on commit 47d8c91

Please sign in to comment.