1
1
mirror of https://github.com/XXIIVV/webring.git synced 2024-09-11 19:47:14 +03:00

Added icons

This commit is contained in:
Devine Lu Linvega 2018-05-17 12:36:31 +12:00
parent 4490dffda6
commit 2f273590fa
4 changed files with 28 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Webring
This [webring](http://wiki.xxiivv.com/webring) is an attempt to inspire artists and developers friends to create and maintain their own website and share traffic among each other.
This [webring](http://wiki.xxiivv.com/webring) is an attempt to inspire artists and developers to create and maintain their own website and share traffic among each other.
The webring's aim is to share personal websites such as diaries, wikis, bookmark lists, portfolios. To add yourself to the ring, submit a pull request to this repository.

13
icon.black.svg Normal file
View File

@ -0,0 +1,13 @@
<svg class="vector" width="300px" height="300px" xmlns="http://www.w3.org/2000/svg" baseProfile="full" version="1.1" style="fill:none;stroke:black;stroke-width:45px;stroke-linecap:square;">
<g transform="translate(0,30)">
<g transform="translate(150,150),rotate(120,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
<g transform="translate(150,150),rotate(240,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
<g transform="translate(150,150),rotate(0,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 607 B

13
icon.white.svg Normal file
View File

@ -0,0 +1,13 @@
<svg class="vector" width="300px" height="300px" xmlns="http://www.w3.org/2000/svg" baseProfile="full" version="1.1" style="fill:none;stroke:black;stroke-width:45px;stroke-linecap:square;">
<g transform="translate(0,30)">
<g transform="translate(150,150),rotate(120,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
<g transform="translate(150,150),rotate(240,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
<g transform="translate(150,150),rotate(0,0,0)">
<path d="M0,-60 a60,60 0 1,0 0,120 l100,0"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 607 B

View File

@ -29,7 +29,6 @@ function Portal(sites)
this.reload = function()
{
console.log("!!")
setTimeout(()=>{ window.location.reload() },500)
}
@ -69,7 +68,7 @@ function Portal(sites)
html = `Redirecting to ${target}
<meta http-equiv="refresh" content="30; url=${target}">
<a href='' onClick="window.location.reload()">Directory</a> | <a href='#${target}' onClick="window.location.reload()">Skip</a> | <a href='#random' onClick="window.location.reload()">Random</a> | <a href='https://github.com/XXIIVV/webring'>Information</a>`
<a href='' onClick="window.location.reload()">Directory</a> | <a href='#${target}' onClick="portal.reload('random')">Skip</a> | <a href='#random' onClick="portal.reload('random')">Random</a> | <a href='https://github.com/XXIIVV/webring'>Information</a>`
return html
}
}