[add] new style
This commit is contained in:
parent
9e8e978f3e
commit
5aafc4f292
2 changed files with 60 additions and 12 deletions
71
inc/user.css
71
inc/user.css
|
@ -1,3 +1,11 @@
|
||||||
|
html {
|
||||||
|
background: -moz-linear-gradient(center top , #434343, #cdcdcd) no-repeat scroll 0 0 transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
-moz-transition: all 100ms ease-in-out;
|
-moz-transition: all 100ms ease-in-out;
|
||||||
-ms-transition: all 100ms ease-in-out;
|
-ms-transition: all 100ms ease-in-out;
|
||||||
|
@ -16,19 +24,37 @@ pre code {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
white-space: normal;
|
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 {
|
#linklist li.publicLinkHightLight {
|
||||||
padding: 4px 10px 10px 20px;
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linktitle, .linkeditbuttons {
|
||||||
|
font-size: 1.6em;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linkInfo {
|
.linkInfo {
|
||||||
float: left;
|
float: left;
|
||||||
width: 220px;
|
width: 230px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linkcontainer {
|
.linkcontainer {
|
||||||
margin-left: 220px;
|
margin-left: 230px;
|
||||||
padding-left:1%;
|
padding-left: 1%;
|
||||||
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linktaglist {
|
.linktaglist {
|
||||||
|
@ -41,17 +67,12 @@ padding: 4px 10px 10px 20px;
|
||||||
margin: 4px 0;
|
margin: 4px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#linklist li.private {
|
|
||||||
background: inherit;
|
|
||||||
padding: 4px 10px 15px 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.private .linktitle a {
|
.private .linktitle a {
|
||||||
color: #80AD48;
|
color: #AAD378;
|
||||||
}
|
}
|
||||||
|
|
||||||
.private .linktitle a:hover {
|
.private .linktitle a:hover {
|
||||||
color: #AAD378;
|
color: #F57900;
|
||||||
}
|
}
|
||||||
|
|
||||||
#findSnippet {
|
#findSnippet {
|
||||||
|
@ -74,4 +95,30 @@ padding: 4px 10px 10px 20px;
|
||||||
|
|
||||||
#findSnippet li a:hover {
|
#findSnippet li a:hover {
|
||||||
color: #AAD378;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -87,6 +87,7 @@
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
<span class="clearFix"></span>
|
||||||
</li>
|
</li>
|
||||||
{/loop}
|
{/loop}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Reference in a new issue