34 lines
479 B
CSS
34 lines
479 B
CSS
/* reset */
|
|
li,
|
|
ul,
|
|
ol,
|
|
table,
|
|
tr,
|
|
td,
|
|
th,
|
|
p,
|
|
blockquote,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 100%;
|
|
}
|
|
|
|
body {
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
color: #333;
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
ul.no-bullet li {
|
|
list-style-type: none;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.pull-right {
|
|
text-align: right;
|
|
} |