Skip to content

Commit

Permalink
New
Browse files Browse the repository at this point in the history
  • Loading branch information
SydneyWafflez committed Sep 12, 2023
1 parent a5e268d commit 0798792
Show file tree
Hide file tree
Showing 2 changed files with 173 additions and 0 deletions.
106 changes: 106 additions & 0 deletions New/coeus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
body {
font-family: 'Open Sans', sans-serif;
background: #efefef;
text-transform: uppercase;
}
h1 {
margin-top: 50px;
margin-bottom: 15px;
margin-right: 12.5%;
text-align: right;
font-size: 1.5em;
color: #bbb;
letter-spacing: 0.1em;
}
td, a {
transition: color 333ms ease-in-out;
}
a {
color: #407db8;
text-decoration: none;
font-weight: 400;
}
.table {
width: 75%;
margin: 0 12.5% 50px 12.5%;
}
tr {
height: 40px;
transition: background 333ms ease-in-out;
}
tr:nth-child(even) {
background: #e6f0f6;
}
tr:nth-child(odd) {
background: #fff;
}
tr:hover {
background: #ddd;
}
tr:hover:nth-child(even) {
background: #ddd;
}
tr:hover td {
color: #888;
}
tr:hover a {
color: #666;
}
tr td {
color: #888;
font-size: 0.78em;
font-weight: 300;
letter-spacing: 0.2em;
}
tr td:first-child {
padding-left: 25px;
}
tr td:last-child {
padding-right: 25px;
text-align: right;
}
/* Icons */
.folder:before, .file:before {
margin-right: 7px;
font-size: 0.7em;
}
.folder:before {
content: '▶';
opacity: 0.6;
}
.file:before {
content: '▶';
opacity: 0.2;
}
/* Top Bar */
tr:first-child {
background: #666;
}
tr:first-child td {
color: #eee;
font-size: 0.75em;
letter-spacing: 0.3em;
}
tr:first-child, tr:first-child td {
transition: none;
}
/* Download Bar */
.download {
width: 100%;
background: #437eb6;
text-align: center;
padding: 8px 0;
}
.download a {
color: white;
font-weight: 700;
}
.download a:after {
content: "▶";
margin-left: 7px;
font-size: 0.8em;
opacity: 0.7;
}
.download a:hover {
color: #163f65;
}
67 changes: 67 additions & 0 deletions New/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="coeus.css">
</head>
<body>
<body>
<style>*{padding:0;margin:0;}</style>

<div class="download">
<a href="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/northerli/localhost-directory-gui">Download on Github</a>
</div>

<h1>Localhost Directory</h1>
<table cellspacing="0" class="table">
<tbody>
<tr>
<td class="head">Filename</td>
<td class="head">Type</td>
<td class="head">Size</td>
</tr>

<tr>
<td><a class="folder" href="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/northerli/localhost-directory-gui">_github/</a></td>
<td> Folder </td>
<td>0.88 Mb</td>
</tr>

<tr>
<td><a class="folder" href="folder">folder/</a></td>
<td> Folder </td>
<td>0.24 Mb</td>
</tr>

<tr>
<td><a class="file" href="index.php">index.php</a></td>
<td> PHP </td>
<td>0.08 Mb</td>
</tr>

<tr>
<td><a class="folder" href="folder">folder/</a></td>
<td> Folder </td>
<td>0.24 Mb</td>
</tr>

<tr>
<td><a class="folder" href="folder">folder/</a></td>
<td> Folder </td>
<td>0.48 Mb</td>
</tr>

<tr>
<td><a class="file" href="style.css">style.css</a></td>
<td> CSS </td>
<td>0.08 Mb</td>
</tr>
</tbody>
</table>

</body>

</body>
</html>

0 comments on commit 0798792

Please sign in to comment.