1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
| body, ul {
margin: 0px;
padding: 0px;
font: 10px normal Arial, Helvetica, sans-serif;
}
p {
text-align: justify;
margin: 0px;
padding: 0px;
}
li {
list-style-type: none;
}
ol {
margin: 0;
padding: 0px;
}
a {
text-decoration: none;
}
h2 {
margin: 0;
}
img {
border: none;
}
.clear {
clear: both;
}
section, nav, footer, figure, aside, header {
display: block;
}
#global {
height: auto;
width: 600px;
margin: 0 auto;
margin-top: 20px;
-moz-box-shadow: 0 1px 3px black;
-moz-border-radius: 3px;
-webkit-box-shadow: 0 1px 3px black;
-webkit-border-radius: 3px;
}
#list_box {
background: -moz-linear-gradient(top, #ededed, #d0d0d0);
background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#d0d0d0));
display: -moz-box;
display: -webkit-box;
min-width: 600px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.list {
height: auto;
width: 200px;
border-left: solid 1px #f0f0f0;
border-right: solid 1px #a9a9a9;
padding: 5px;
display: -moz-box;
display: -webkit-box;
-moz-box-orient: vertical;
-webkit-box-orient: vertical;
}
.list_top {
margin-bottom: 5px;
}
.list_top p {
color: #888888;
font-size: 11px;
font-weight: bold;
text-align: center;
text-shadow: 0 1px 0 #efefef;
text-transform: uppercase;
}
.list_content {
display: -moz-box;
display: -webkit-box;
}
.list_content p, .list_content a {
font-size: 11px;
}
.list_time {
margin-right: 10px;
color: #000;
font-size: 11px;
font-weight: bold;
}
.list_name {
text-transform: uppercase;
} |
Partager