Last active
August 29, 2015 13:58
-
-
Save Qofar/9976000 to your computer and use it in GitHub Desktop.
Firefox add-on MyBookmarks 用スタイルシート
This file contains hidden or 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
body { | |
font-size: 12px; | |
background-color: #b7babf; | |
/* | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
*/ | |
} | |
a, h2 { | |
font-size: 12px; | |
text-decoration: none; | |
color: #555; | |
} | |
a:hover { | |
background-color: #aaaaaa; | |
color: #000000; | |
box-shadow: 0 0 7px #2a2a2a; | |
} | |
li { | |
list-style: none; | |
padding: 5px 0px 0px 0px; | |
} | |
li.favnode { | |
text-indent:-24px; | |
} | |
ul { | |
margin: 6px; | |
padding: 0; | |
padding-left: 30px; | |
} | |
.folder { | |
margin-bottom: 40px; | |
padding: 0px; | |
width: 100%; | |
} | |
.favicon { | |
margin: -3px .4em 0 0; | |
vertical-align: middle; | |
} | |
table { | |
margin-right: auto; | |
margin-left: auto | |
} | |
td { | |
vertical-align: top; | |
width: 500px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment