initial layout and styles
This commit is contained in:
		
							parent
							
								
									4da2f1815c
								
							
						
					
					
						commit
						08c74ec5e0
					
				
					 2 changed files with 93 additions and 0 deletions
				
			
		
							
								
								
									
										44
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,44 @@
 | 
			
		|||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
    <head>
 | 
			
		||||
        <meta charset="utf-8">
 | 
			
		||||
        <title>landing</title>
 | 
			
		||||
        <link rel="stylesheet" type="text/css" href="style.css">
 | 
			
		||||
    </head>
 | 
			
		||||
    <body>
 | 
			
		||||
        <div class="wrapper">
 | 
			
		||||
            <div id="header">
 | 
			
		||||
                <header>
 | 
			
		||||
                    <h1>zoner.work</h1>
 | 
			
		||||
                    <p><a href="https://status.zoner.work">Status Page</a></p>
 | 
			
		||||
                </header>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr>
 | 
			
		||||
            <div id="linkblock">
 | 
			
		||||
                <h3>social</h3>
 | 
			
		||||
                <p><a href="https://zoner.work">Sharkey</a></p>
 | 
			
		||||
                <p><a href="https://wf.zoner.work">Writefreely</a></p>
 | 
			
		||||
                <p><a href="https://m.zoner.work">Matrix</a></p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr>
 | 
			
		||||
            <div id="linkblock">
 | 
			
		||||
                <h3>a/v</h3>
 | 
			
		||||
                <p><a href="https://inv.zoner.work">Invidious</a></p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr>
 | 
			
		||||
            <div id="linkblock">
 | 
			
		||||
                <h3>utility</h3>
 | 
			
		||||
                <p><a href="https://nc.zoner.work">Nextcloud</a></p>
 | 
			
		||||
                <p><a href="https://search.zoner.work">SearXNG</a></p>
 | 
			
		||||
                <p><a href="https://git.zoner.work">Forgejo</a></p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div id="description">
 | 
			
		||||
                <hr>
 | 
			
		||||
                <p>zoner.work is a network of hosted services and community spaces administrated by <a href="https://zoner.work/@fen">fennel kora</a>.
 | 
			
		||||
                this network's purpose is to maintain inclusive, safe spaces for those who need them that stand apart from a corporatized, centralized web.</p>
 | 
			
		||||
                <p>All account-based services are open to registration by invite. Please reach out to fen for details. Sharkey is open for public registrations, 
 | 
			
		||||
                    though accounts will still require systematic approval.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										49
									
								
								style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								style.css
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,49 @@
 | 
			
		|||
body {
 | 
			
		||||
    background-image: url("https://i.zoner.work/firefish/kyushu.jpg");
 | 
			
		||||
    background-repeat: no-repeat;
 | 
			
		||||
    background-attachment: fixed;
 | 
			
		||||
    background-size: cover;
 | 
			
		||||
    font-family: sans-serif;
 | 
			
		||||
    color: white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.wrapper {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-flow: row wrap;
 | 
			
		||||
    margin-top: 150px;
 | 
			
		||||
    margin-left: auto;
 | 
			
		||||
    margin-right: auto;
 | 
			
		||||
    width: 50%;
 | 
			
		||||
    padding:2em;
 | 
			
		||||
    background-color: #0D1117;
 | 
			
		||||
    border-radius: 40px;
 | 
			
		||||
    box-shadow: 3px 3px 5px #111111;
 | 
			
		||||
    justify-content: space-around;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
p {
 | 
			
		||||
    padding: 0px;
 | 
			
		||||
    margin: 0.8em;
 | 
			
		||||
    font-size: 0.9em
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.linkblock {
 | 
			
		||||
    flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a {
 | 
			
		||||
    color: white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a:hover {
 | 
			
		||||
    color: orangered
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#description {
 | 
			
		||||
    order: 6;
 | 
			
		||||
    width: 100%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
hr {
 | 
			
		||||
    margin: 2em;
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in a new issue