昵称中允许使用 + 号
[gaetalk.git] / css / markdown.css
blobbd15cef744d16873d8df0aa775ef545076f65781
1 @charset "utf-8";
2 body {
3 width: 900px;
4 margin: 2em auto;
5 background: #ffffb9;
7 a {
8 text-decoration: none;
10 a:hover {
11 text-decoration: underline;
13 a[href^="http:"] {
14 padding-right: .8em;
15 margin-right: .2em;
16 background: no-repeat url(../img/external.png) right center;
18 h1 {
19 text-align: center;
21 table {
22 border-collapse: collapse;
24 em:lang(zh) {
25 font-style: normal;
26 font-weight: bold;
28 .warning {
29 background-color: #ffff58;
30 padding: .5em 1em;
31 margin: 1em 2em;
33 .error {
34 color: red;
35 font-weight: bold;
36 padding: .5em 1em;
37 margin: 1em 2em;
39 .succeeded {
40 color: #009900;
42 .succeeded:before {
43 content: '✔';
45 .failed {
46 color: #990000;
48 .failed:before {
49 content: '✘';
51 .number-right {
52 text-align: right;
54 .center-wrapper {
55 text-align: center;
57 .tabline {
58 list-style: none;
59 overflow: visible;
60 display: inline-block;
61 margin: 0;
62 padding: 0;
64 .tabline > li {
65 float: left;
66 display: block;
67 padding: 1px 0;
68 margin: 0;
69 margin-right: -1px;
70 border: 1px solid #bfbfbf;
72 .tabline > li > a {
73 padding: .1em .2em;
74 font-size: 1.2em;
75 text-shadow: 0 0 .1em rgba(127, 127, 127, 0.5);
76 outline: none;
77 color: #bfbfbf;
79 .tabline > li > a:hover {
80 text-decoration: none;
82 .tabline > li > a.selected {
83 background-color: #bfbfbf;
84 color: white;
85 text-shadow: 0 0 .1em rgba(255, 255, 255, 0.5);
87 .two-column {
88 -moz-column-count: 2;
89 -moz-column-gap: 2em;
90 -webkit-column-count: 2;
91 -webkit-column-gap: 2em;
92 column-count: 2;
93 column-gap: 2em;
95 .three-column {
96 -moz-column-count: 3;
97 -moz-column-gap: 2em;
98 -webkit-column-count: 3;
99 -webkit-column-gap: 2em;
100 column-count: 3;
101 column-gap: 2em;
103 /* vim:se fdm=marker fmr={,}: */