Created
August 21, 2014 18:02
-
-
Save archydragon/e30204d5591c12c687a8 to your computer and use it in GitHub Desktop.
Custom Nginx fancyindex stylesheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location /devnull { | |
fancyindex on; | |
fancyindex_exact_size off; | |
fancyindex_css_href "/fancyindex.css"; | |
allow all; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
font-family: monospace; | |
} | |
a { | |
color: #2020cc; | |
} | |
a:hover { | |
color: #7070ff; | |
} | |
td { | |
height: 20px; | |
} | |
#list { | |
border: none; | |
} | |
th { | |
text-decoration: none; | |
border: none; | |
background: #ddd; | |
height: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment