Ôªø/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.addStylesSet( 'my_styles',
[
/* Block Styles */
{
name : 'Title',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:28px;margin-top:0px;font-weight:bold;text-transform:uppercase;line-height:36px;color:#EC0089;',
}
},
{
name : 'Title Yellow',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:28px;margin-top:0px;font-weight:bold;text-transform:uppercase;line-height:36px;color:#D3DF4E;',
}
},
{
name : 'Title Green',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:28px;margin-top:0px;font-weight:bold;text-transform:uppercase;line-height:36px;color:#75C044;',
}
},
{
name : 'Title Blue',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:28px;margin-top:0px;font-weight:bold;text-transform:uppercase;line-height:36px;color:#00B5EF;',
}
},
{
name : 'Subheading',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:12px;color:#EC0089;font-weight:bold;',
}
},
{
name : 'Subheading Yellow',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:12px;color:#D3DF4E;font-weight:bold;',
}
},
{
name : 'Subheading Green',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:12px;color:#75C044;font-weight:bold;',
}
},
{
name : 'Subheading Blue',
element : 'p',
attributes :
{
'style' : 'font:Arial;font-size:12px;color:#00B5EF;font-weight:bold;',
}
},
{
name : 'Normal',
element : 'p',
attributes :
{
'style' : 'font:Arial;color:#666;font-size:12px;line-height:18px;letter-spacing:0.65px;',
}
},
{
name : 'Normal Yellow',
element : 'p',
attributes :
{
'style' : 'font:Arial;color:#D3DF4E;font-size:12px;line-height:18px;letter-spacing:0.65px;',
}
},
{
name : 'Normal Green',
element : 'p',
attributes :
{
'style' : 'font:Arial;color:#75C044;font-size:12px;line-height:18px;letter-spacing:0.65px;',
}
},
{
name : 'Normal Blue',
element : 'p',
attributes :
{
'style' : 'font:Arial;color:#00B5EF;font-size:12px;line-height:18px;letter-spacing:0.65px;',
}
},
{
name : 'Normal Magenta',
element : 'p',
attributes :
{
'style' : 'font:Arial;color:#EC0089;font-size:12px;line-height:18px;letter-spacing:0.65px;',
}
},
{
name : 'Sweltrac Subheading Two',
element : 'p',
attributes :
{
'style' : 'font-size:16px;color:#00B5EF;font-weight:bold;',
}
},
{
name : 'Teddington Title',
element : 'p',
attributes :
{
'style' : 'font-size:28px;margin-top:0px;font-weight:bold;text-transform:uppercase;line-height:36px;color:#00b5ef;',
}
},
{
name : 'Teddington Subheading',
element : 'p',
attributes :
{
'style' : 'font-size:12px;color:#00b5ef;font-weight:bold;',
}
},
{
name : 'Newsletter Subheading',
element : 'p',
attributes :
{
'style' : 'font-size:16px;color:#EC0089;font-weight:bold;',
}
},
{
name : 'Newsletter Text',
element : 'p',
attributes :
{
'style' : 'font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;color:#666;font-size:12px;',
}
},
{
name : 'Footer Text',
element : 'p',
attributes :
{
'style' : 'font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;color:#666;font-size:10px;text-align:center;',
}
},
/* Inline Styles */
/* Object Styles */
{
name : 'Image Left',
element : 'img',
attributes :
{
'style' : 'float:left;margin-right: 20px;border:1px solid #EC0089;',
}
},
{
name : 'Image Right',
element : 'img',
attributes :
{
'style' : ' float:right;margin-left: 20px;border:1px solid #EC0089;',
}
},
{
name : 'Newsletter Image Left',
element : 'img',
attributes :
{
'style' : ' float:left; margin-right: 20px;margin-bottom:10px;',
}
},
{
name : 'Newsletter Image Right',
element : 'img',
attributes :
{
'style' : 'float:right;margin-left: 20px;margin-bottom:10px;',
}
},
]);
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.stylesCombo_stylesSet = 'my_styles:http://editor.rubberduckiee.webfactional.com/editor/style.js';
};