Localhost Directory GUI

Developer
Size
3,997 Kb
Views
74,888

How do I make an localhost directory gui?

Just a nice facelift for your localhost directory.Visit the github page to get the PHP/SCSS and install instructions.. What is a localhost directory gui? How do you make a localhost directory gui? This script and codes were developed by Chris Holder on 20 June 2022, Monday.

Localhost Directory GUI Previews

Localhost Directory GUI - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Localhost Directory GUI</title> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300' rel='stylesheet' type='text/css'> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @charset "UTF-8";
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;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <body> <style>*{padding:0;margin:0;}</style> <div class="download"> <a href="https://github.com/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="https://github.com/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> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Localhost Directory GUI - Script Codes CSS Codes

@charset "UTF-8";
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;
}
Localhost Directory GUI - Script Codes
Localhost Directory GUI - Script Codes
Home Page Home
Developer Chris Holder
Username see8ch
Uploaded June 20, 2022
Rating 4
Size 3,997 Kb
Views 74,888
Do you need developer help for Localhost Directory GUI?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Chris Holder (see8ch) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!