Skip to content

Commit a8ab5c3

Browse files
Merge pull request Crypt0knights#7 from nightwarrior-xxx/blog
Modified the UI
2 parents 498663d + 750a24c commit a8ab5c3

File tree

363 files changed

+16671
-35
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

363 files changed

+16671
-35
lines changed

blog/blog.css

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
font-weight: bold;
1212
font-size: 20px;
1313
border-color: black;
14+
font-family: cursive;
1415
}
1516

16-
#content {
17-
border-radius: 20px;
18-
height: 500px;
19-
width: 1000px;
20-
padding: 20px;
21-
background-color: rgba(27,31,35,.9);
22-
color: white;
17+
.content {
18+
font-family: cursive;
2319
font-weight: bold;
20+
font-style: normal;
2421
font-size: 20px;
25-
border-color: black;
22+
border: 20px solid black;
23+
border-radius: 20px;
24+
border-color: rgba(27,31,35,0.9);
25+
color: rgba(0,0,0,0.5);
2626
}
2727

2828
.publish{

blog/ckeditor.js

+1,222
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blog/ckeditor/CHANGES.md

+1,568
Large diffs are not rendered by default.

blog/ckeditor/LICENSE.md

+1,420
Large diffs are not rendered by default.

blog/ckeditor/README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
CKEditor 4
2+
==========
3+
4+
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
5+
http://ckeditor.com - See LICENSE.md for license information.
6+
7+
CKEditor is a text editor to be used inside web pages. It's not a replacement
8+
for desktop text editors like Word or OpenOffice, but a component to be used as
9+
part of web applications and websites.
10+
11+
## Documentation
12+
13+
The full editor documentation is available online at the following address:
14+
https://ckeditor.com/docs/ckeditor4/latest/
15+
16+
## Installation
17+
18+
Installing CKEditor is an easy task. Just follow these simple steps:
19+
20+
1. **Download** the latest version from the CKEditor website:
21+
http://ckeditor.com. You should have already completed this step, but be
22+
sure you have the very latest version.
23+
2. **Extract** (decompress) the downloaded file into the root of your website.
24+
25+
**Note:** CKEditor is by default installed in the `ckeditor` folder. You can
26+
place the files in whichever you want though.
27+
28+
## Checking Your Installation
29+
30+
The editor comes with a few sample pages that can be used to verify that
31+
installation proceeded properly. Take a look at the `samples` directory.
32+
33+
To test your installation, just call the following page at your website:
34+
35+
http://<your site>/<CKEditor installation path>/samples/index.html
36+
37+
For example:
38+
39+
http://www.example.com/ckeditor/samples/index.html

blog/ckeditor/adapters/jquery.js

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blog/ckeditor/build-config.js

+166
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
/**
2+
* @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
3+
* For licensing, see LICENSE.md or http://ckeditor.com/license
4+
*/
5+
6+
/**
7+
* This file was added automatically by CKEditor builder.
8+
* You may re-use it at any time to build CKEditor again.
9+
*
10+
* If you would like to build CKEditor online again
11+
* (for example to upgrade), visit one the following links:
12+
*
13+
* (1) http://ckeditor.com/builder
14+
* Visit online builder to build CKEditor from scratch.
15+
*
16+
* (2) http://ckeditor.com/builder/8ff7b71bcccc296bcc3a4a5b82942d17
17+
* Visit online builder to build CKEditor, starting with the same setup as before.
18+
*
19+
* (3) http://ckeditor.com/builder/download/8ff7b71bcccc296bcc3a4a5b82942d17
20+
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
21+
*
22+
* NOTE:
23+
* This file is not used by CKEditor, you may remove it.
24+
* Changing this file will not change your CKEditor configuration.
25+
*/
26+
27+
var CKBUILDER_CONFIG = {
28+
skin: 'moono-lisa',
29+
preset: 'standard',
30+
ignore: [
31+
'.DS_Store',
32+
'.bender',
33+
'.editorconfig',
34+
'.gitattributes',
35+
'.gitignore',
36+
'.idea',
37+
'.jscsrc',
38+
'.jshintignore',
39+
'.jshintrc',
40+
'.mailmap',
41+
'.npm',
42+
'.travis.yml',
43+
'bender-err.log',
44+
'bender-out.log',
45+
'bender.ci.js',
46+
'bender.js',
47+
'dev',
48+
'gruntfile.js',
49+
'less',
50+
'node_modules',
51+
'package.json',
52+
'tests'
53+
],
54+
plugins : {
55+
'a11yhelp' : 1,
56+
'about' : 1,
57+
'basicstyles' : 1,
58+
'blockquote' : 1,
59+
'clipboard' : 1,
60+
'contextmenu' : 1,
61+
'elementspath' : 1,
62+
'enterkey' : 1,
63+
'entities' : 1,
64+
'filebrowser' : 1,
65+
'floatingspace' : 1,
66+
'format' : 1,
67+
'horizontalrule' : 1,
68+
'htmlwriter' : 1,
69+
'image' : 1,
70+
'indentlist' : 1,
71+
'link' : 1,
72+
'list' : 1,
73+
'magicline' : 1,
74+
'maximize' : 1,
75+
'pastefromword' : 1,
76+
'pastetext' : 1,
77+
'removeformat' : 1,
78+
'resize' : 1,
79+
'scayt' : 1,
80+
'showborders' : 1,
81+
'sourcearea' : 1,
82+
'specialchar' : 1,
83+
'stylescombo' : 1,
84+
'tab' : 1,
85+
'table' : 1,
86+
'tableselection' : 1,
87+
'tabletools' : 1,
88+
'toolbar' : 1,
89+
'undo' : 1,
90+
'uploadimage' : 1,
91+
'wsc' : 1,
92+
'wysiwygarea' : 1
93+
},
94+
languages : {
95+
'af' : 1,
96+
'ar' : 1,
97+
'az' : 1,
98+
'bg' : 1,
99+
'bn' : 1,
100+
'bs' : 1,
101+
'ca' : 1,
102+
'cs' : 1,
103+
'cy' : 1,
104+
'da' : 1,
105+
'de' : 1,
106+
'de-ch' : 1,
107+
'el' : 1,
108+
'en' : 1,
109+
'en-au' : 1,
110+
'en-ca' : 1,
111+
'en-gb' : 1,
112+
'eo' : 1,
113+
'es' : 1,
114+
'es-mx' : 1,
115+
'et' : 1,
116+
'eu' : 1,
117+
'fa' : 1,
118+
'fi' : 1,
119+
'fo' : 1,
120+
'fr' : 1,
121+
'fr-ca' : 1,
122+
'gl' : 1,
123+
'gu' : 1,
124+
'he' : 1,
125+
'hi' : 1,
126+
'hr' : 1,
127+
'hu' : 1,
128+
'id' : 1,
129+
'is' : 1,
130+
'it' : 1,
131+
'ja' : 1,
132+
'ka' : 1,
133+
'km' : 1,
134+
'ko' : 1,
135+
'ku' : 1,
136+
'lt' : 1,
137+
'lv' : 1,
138+
'mk' : 1,
139+
'mn' : 1,
140+
'ms' : 1,
141+
'nb' : 1,
142+
'nl' : 1,
143+
'no' : 1,
144+
'oc' : 1,
145+
'pl' : 1,
146+
'pt' : 1,
147+
'pt-br' : 1,
148+
'ro' : 1,
149+
'ru' : 1,
150+
'si' : 1,
151+
'sk' : 1,
152+
'sl' : 1,
153+
'sq' : 1,
154+
'sr' : 1,
155+
'sr-latn' : 1,
156+
'sv' : 1,
157+
'th' : 1,
158+
'tr' : 1,
159+
'tt' : 1,
160+
'ug' : 1,
161+
'uk' : 1,
162+
'vi' : 1,
163+
'zh' : 1,
164+
'zh-cn' : 1
165+
}
166+
};

0 commit comments

Comments
 (0)