Skip to content

Commit 015ab95

Browse files
committed
Design almost finished.
1 parent 679ae8f commit 015ab95

25 files changed

+952
-17
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
assets:
2+
@cat _assets/yue.css > static/vendor.css
3+
@cat _assets/fonts.css >> static/vendor.css
4+
@cat _assets/pygments.css >> static/vendor.css
5+
@cleancss static/vendor.css --s0 -o static/vendor.css
6+
7+
clean:
8+
@rm -fr _site
9+
10+
watch:
11+
@jekyll serve --watch

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Developers Team Blog
2+
3+
Requirements to join this blog:
4+
5+
1. MUST BE A DEVELOPER IN ELEME
6+
2. Add your information in `_data/members.yml`

_assets/fonts.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
@font-face {
2+
font-family: 'Icon';
3+
src:url('fonts/Icon.eot?ebhs91');
4+
src:url('fonts/Icon.eot?#iefixebhs91') format('embedded-opentype'),
5+
url('fonts/Icon.woff?ebhs91') format('woff'),
6+
url('fonts/Icon.ttf?ebhs91') format('truetype'),
7+
url('fonts/Icon.svg?ebhs91#Icon') format('svg');
8+
font-weight: normal;
9+
font-style: normal;
10+
}
11+
12+
[class^="icon-"], [class*=" icon-"] {
13+
font-family: 'Icon';
14+
speak: none;
15+
font-style: normal;
16+
font-weight: normal;
17+
font-variant: normal;
18+
text-transform: none;
19+
line-height: 1;
20+
21+
/* Better Font Rendering =========== */
22+
-webkit-font-smoothing: antialiased;
23+
-moz-osx-font-smoothing: grayscale;
24+
}
25+
26+
.icon-link:before {
27+
content: "\e600";
28+
}
29+
.icon-quill:before {
30+
content: "\e60a";
31+
}
32+
.icon-spinner:before {
33+
content: "\e608";
34+
}
35+
.icon-lab:before {
36+
content: "\e609";
37+
}
38+
.icon-facebook:before {
39+
content: "\e605";
40+
}
41+
.icon-instagram:before {
42+
content: "\e601";
43+
}
44+
.icon-twitter:before {
45+
content: "\e606";
46+
}
47+
.icon-feed:before {
48+
content: "\e602";
49+
}
50+
.icon-dribbble:before {
51+
content: "\e603";
52+
}
53+
.icon-github:before {
54+
content: "\e604";
55+
}
56+
.icon-weibo:before {
57+
content: "\e607";
58+
}

_assets/pygments.css

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
.highlight .hll {
2+
background-color: #ffc;
3+
}
4+
.highlight .c {
5+
color: #999;
6+
}
7+
.highlight .err {
8+
color: #a00;
9+
background-color: #faa;
10+
}
11+
.highlight .k {
12+
color: #069;
13+
}
14+
.highlight .o {
15+
color: #555;
16+
}
17+
.highlight .cm {
18+
color: #09f;
19+
font-style: italic;
20+
}
21+
.highlight .cp {
22+
color: #099;
23+
}
24+
.highlight .c1 {
25+
color: #999;
26+
}
27+
.highlight .cs {
28+
color: #999;
29+
}
30+
.highlight .gd {
31+
background-color: #fcc;
32+
border: 1px solid #c00;
33+
}
34+
.highlight .ge {
35+
font-style: italic;
36+
}
37+
.highlight .gr {
38+
color: #f00;
39+
}
40+
.highlight .gh {
41+
color: #030;
42+
}
43+
.highlight .gi {
44+
background-color: #cfc;
45+
border: 1px solid #0c0;
46+
}
47+
.highlight .go {
48+
color: #aaa;
49+
}
50+
.highlight .gp {
51+
color: #009;
52+
}
53+
.highlight .gu {
54+
color: #030;
55+
}
56+
.highlight .gt {
57+
color: #9c6;
58+
}
59+
.highlight .kc {
60+
color: #069;
61+
}
62+
.highlight .kd {
63+
color: #069;
64+
}
65+
.highlight .kn {
66+
color: #069;
67+
}
68+
.highlight .kp {
69+
color: #069;
70+
}
71+
.highlight .kr {
72+
color: #069;
73+
}
74+
.highlight .kt {
75+
color: #078;
76+
}
77+
.highlight .m {
78+
color: #f60;
79+
}
80+
.highlight .s {
81+
color: #d44950;
82+
}
83+
.highlight .na {
84+
color: #4f9fcf;
85+
}
86+
.highlight .nb {
87+
color: #366;
88+
}
89+
.highlight .nc {
90+
color: #0a8;
91+
}
92+
.highlight .no {
93+
color: #360;
94+
}
95+
.highlight .nd {
96+
color: #99f;
97+
}
98+
.highlight .ni {
99+
color: #999;
100+
}
101+
.highlight .ne {
102+
color: #c00;
103+
}
104+
.highlight .nf {
105+
color: #c0f;
106+
}
107+
.highlight .nl {
108+
color: #99f;
109+
}
110+
.highlight .nn {
111+
color: #12b4dd;
112+
}
113+
.highlight .nt {
114+
color: #2f6f9f;
115+
}
116+
.highlight .nv {
117+
color: #033;
118+
}
119+
.highlight .ow {
120+
color: #000;
121+
}
122+
.highlight .w {
123+
color: #bbb;
124+
}
125+
.highlight .mf {
126+
color: #f60;
127+
}
128+
.highlight .mh {
129+
color: #f60;
130+
}
131+
.highlight .mi {
132+
color: #f60;
133+
}
134+
.highlight .mo {
135+
color: #f60;
136+
}
137+
.highlight .sb {
138+
color: #c30;
139+
}
140+
.highlight .sc {
141+
color: #c30;
142+
}
143+
.highlight .sd {
144+
color: #c30;
145+
font-style: italic;
146+
}
147+
.highlight .s2 {
148+
color: #c30;
149+
}
150+
.highlight .se {
151+
color: #c30;
152+
}
153+
.highlight .sh {
154+
color: #c30;
155+
}
156+
.highlight .si {
157+
color: #a00;
158+
}
159+
.highlight .sx {
160+
color: #c30;
161+
}
162+
.highlight .sr {
163+
color: #3aa;
164+
}
165+
.highlight .s1 {
166+
color: #c30;
167+
}
168+
.highlight .ss {
169+
color: #fc3;
170+
}
171+
.highlight .bp {
172+
color: #366;
173+
}
174+
.highlight .vc {
175+
color: #033;
176+
}
177+
.highlight .vg {
178+
color: #033;
179+
}
180+
.highlight .vi {
181+
color: #033;
182+
}
183+
.highlight .il {
184+
color: #f60;
185+
}
186+
.highlight .css .o,
187+
.highlight .css .o + .nt,
188+
.highlight .css .nt + .nt {
189+
color: #999;
190+
}

0 commit comments

Comments
 (0)