Skip to content

Commit e1ca342

Browse files
committed
create
0 parents  commit e1ca342

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

redmine_wiki.css

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
body.controller-wiki #content {
2+
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Kaku Gothic Pro', 'Meiryo', 'MS PGothic', sans-serif;
3+
}
4+
body.controller-wiki #content h1 {
5+
background: #333;
6+
color: #fff;
7+
font-size: 24px;
8+
padding: 10px 20px;
9+
margin: 40px 0 0 0;
10+
}
11+
body.controller-wiki #content h2 {
12+
background: #eee;
13+
font-size: 20px;
14+
margin: 20px 0 10px 0;
15+
padding: 10px 20px;
16+
}
17+
body.controller-wiki #content h3 {
18+
font-size: 20px;
19+
border-bottom: 1px solid #333;
20+
margin: 20px 0 10px 20px;
21+
padding: 5px 0;
22+
}
23+
body.controller-wiki #content h4 {
24+
font-size: 14px;
25+
border-bottom: 1px dotted #333;
26+
font-weight: bold;
27+
margin: 20px 0 10px 20px;
28+
padding: 5px 0;
29+
}
30+
body.controller-wiki #content h5 {
31+
font-size: 14px;
32+
font-weight: bold;
33+
margin: 20px 0 10px 20px;
34+
}
35+
body.controller-wiki #content p {
36+
font-size: 14px;
37+
margin: 10px 0 10px 20px;
38+
}
39+
body.controller-wiki #content table {
40+
margin: 10px 0 10px 20px;
41+
}
42+
body.controller-wiki #content table th,
43+
body.controller-wiki #content table td {
44+
font-size: 14px;
45+
}
46+
body.controller-wiki #content table tr:nth-child(2n) {
47+
background: #eee;
48+
}
49+
body.controller-wiki #content code {
50+
font-family: monospace;
51+
}

redmine_wiki.styl

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
body.controller-wiki #content
2+
font-family 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Kaku Gothic Pro', 'Meiryo', 'MS PGothic', sans-serif
3+
h1
4+
background #333
5+
color #fff
6+
font-size 24px
7+
padding 10px 20px
8+
margin 40px 0 0 0
9+
h2
10+
background #eee
11+
font-size 20px
12+
margin 20px 0 10px 0
13+
padding 10px 20px
14+
h3
15+
font-size 20px
16+
border-bottom 1px solid #333
17+
margin 20px 0 10px 20px
18+
padding 5px 0
19+
h4
20+
font-size 14px
21+
border-bottom 1px dotted #333
22+
font-weight bold
23+
margin 20px 0 10px 20px
24+
padding 5px 0
25+
h5
26+
font-size 14px
27+
font-weight bold
28+
margin 20px 0 10px 20px
29+
p
30+
font-size 14px
31+
margin 10px 0 10px 20px
32+
table
33+
margin 10px 0 10px 20px
34+
th
35+
td
36+
font-size 14px
37+
tr:nth-child(2n)
38+
background #eee
39+
code
40+
font-family monospace

0 commit comments

Comments
 (0)