Shaarlet/inc/user.css

131 lines
2.6 KiB
CSS

html {
background: #434343; /* Old browsers */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#434343), color-stop(100%,#cdcdcd)) no-repeat scroll 0 0 transparent;; /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #434343 0%,#cdcdcd 100%) no-repeat scroll 0 0 transparent;; /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #434343 0%,#cdcdcd 100%) no-repeat scroll 0 0 transparent;; /* Opera 11.10+ */
background: -ms-linear-gradient(top, #434343 0%,#cdcdcd 100%) no-repeat scroll 0 0 transparent;; /* IE10+ */
background: linear-gradient(to bottom, #434343 0%,#cdcdcd 100%) no-repeat scroll 0 0 transparent;; /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#434343', endColorstr='#cdcdcd',GradientType=0 ); /* IE6-9 */
background: -moz-linear-gradient(center top , #434343, #cdcdcd) no-repeat scroll 0 0 transparent;
}
body {
background-color: inherit;
}
a {
-moz-transition: all 100ms ease-in-out;
-ms-transition: all 100ms ease-in-out;
-o-transition: all 100ms ease-in-out;
-webkit-transition: all 100ms ease-in-out;
transition: all 100ms ease-in-out;
color: #E28E3F;
}
a:hover {
color: #F57900
}
pre code {
border-radius: 3px;
overflow-x: auto;
white-space: normal;
}
#linklist {
max-width: 80%;
margin: 0 auto;
padding: 0.3em;
}
#linklist li, #linklist li.private {
padding: 0.3em;
margin: 1em 0;
border: 1px solid #cdcdcd;
border-radius: 0.3em;
background: #fff;
}
#linklist li.publicLinkHightLight {
background: #fff;
}
.linktitle, .linkeditbuttons {
font-size: 1.6em;
font-weight: bold;
}
.linkInfo {
float: left;
width: 230px;
}
.linkcontainer {
margin-left: 230px;
padding-left: 1%;
position: static;
}
.linktaglist {
padding-top: 0px;
}
.linktag {
display: inline-block;
height: auto;
margin: 4px 0;
}
.private .linktitle a {
color: #AAD378;
}
.private .linktitle a:hover {
color: #F57900;
}
#findSnippet {
background-color: #111111;
padding: 2px;
}
#findSnippet li {
display: inline-block;
padding: 1px;
color: #EEEEEE;
}
#findSnippet li a {
display: block;
color: #80AD48;
font-size: 105%;
text-decoration: none;
}
#findSnippet li a:hover {
color: #AAD378;
}
.clearFix {
clear: both;
display: block;
min-width: 1px;
min-height: 1px;
margin: 0;
height: 0;
}
.paging {
border-radius: 0.3em;
}
#footer {
border-top: none;
color: #555;
}
@media handheld, only screen and (max-width: 560px) , only screen and (max-device-width: 854px) {
#linklist {
max-width: 100%;
margin: 0 auto;
padding: 0.3em;
}
}