update index.html

This commit is contained in:
idk
2022-10-12 16:03:35 -04:00
parent e3abea676a
commit db1638ab0b
6 changed files with 915 additions and 213 deletions

0
.nojekyll Normal file
View File

View File

@ -1,15 +1,3 @@
NAME=`echo $(PWD) | sed 's/^.*\///' | sed 's|-| |g'`
index:
echo "<DOCTYPE html>" > index.html
echo "<html>" >> index.html
echo "<head>" >> index.html
echo " <title>$(NAME)</title>" >> index.html
echo " <link rel="stylesheet" type="text/css" href ="style.css" />" >> index.html
echo "</head>" >> index.html
echo "<body>" >> index.html
echo "<h1>$(NAME)</h1>" >> index.html
pandoc README.md >> index.html
echo "</body>" >> index.html
echo "</html>" >> index.html
edgar

BIN
i2plogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

1001
index.html

File diff suppressed because it is too large Load Diff

15
showhider.css Normal file
View File

@ -0,0 +1,15 @@
/* edgar showhider CSS file */
#show {display:none; }
#hide {display:block; }
#show:target {display: block; }
#hide:target {display: none; }
#shownav {display:none; }
#hidenav {display:block; }
#shownav:target {display: block; }
#hidenav:target {display: none; }
#donate {display:none; }
#hidedonate {display:block; }
#donate:target {display: block; }
#hidedonate:target {display: none; }

View File

@ -1,3 +1,5 @@
/* edgar default CSS file */
body {
font-family: "Roboto";
font-family: monospace;
@ -32,8 +34,9 @@ img {
float: left;
top: 5%;
left: 5%;
width: 22%;
max-width: 60%;
display: inline;
padding-right: 2%;
}
.inline {
@ -52,6 +55,7 @@ code {
font-family: monospace;
border-radius: 5%;
padding: 1%;
border-color: darkgray;
font-size: .9em;
}
@ -68,4 +72,94 @@ iframe {
background: aliceblue;
border-radius: 15%;
margin: 2%;
}
}
.container {
width: 36vw;
height: 64vh;
display: inline-block;
margin: 0;
padding: 0;
}
.editor-toolbar a {
display: inline-block;
text-align: center;
text-decoration: none !important;
color: whitesmoke !important;
}
#feed {
width: 60vw;
height: unset !important;
margin: 0;
padding: 0;
float: right;
background-color: #373636;
color: whitesmoke;
border: #C6D9FE solid 1px;
}
.thread-post,
.thread {
color: whitesmoke !important;
background-color: #373636;
border: 1px solid darkgray;
font-size: inherit;
padding-top: 1%;
padding-bottom: 1%;
}
.thread-post {
margin-left: 4%;
}
input {
text-align: center;
color: whitesmoke !important;
background-color: #373636;
border: 1px solid darkgray;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
padding-top: 1%;
padding-bottom: 1%;
}
.thread-hash {
text-align: right;
color: whitesmoke !important;
background-color: #373636;
border: 1px solid darkgray;
font-size: inherit;
padding-top: 1%;
padding-bottom: 1%;
}
.post-body {
text-align: left;
color: whitesmoke !important;
font-size: inherit;
padding-top: 1%;
padding-bottom: 1%;
}
#show {display:none; }
#hide {display:block; }
#show:target {display: block; }
#hide:target {display: none; }
#shownav {display:none; }
#hidenav {display:block; }
#shownav:target {display: block; }
#hidenav:target {display: none; }
#navbar {
float: right;
width: 15%;
}
#returnhome {
font-size: xxx-large;
display: inline;
}
h1 {
display: inline;
}