All Projects → doublesecretagency → Craft Cpcss

doublesecretagency / Craft Cpcss

Licence: mit
Control Panel CSS plugin for Craft CMS

Projects that are alternatives of or similar to Craft Cpcss

craft-instagram-feed
Craft CMS plugin to receive Instragram feed data as variable in templates
Stars: ✭ 25 (-78.26%)
Mutual labels:  craft, craftcms
Craft Boilerplate
Our standard project template for new Craft CMS websites
Stars: ✭ 44 (-61.74%)
Mutual labels:  craftcms, craft
craft-plugin-mix
Helper plugin for Laravel Mix in Craft CMS templates
Stars: ✭ 50 (-56.52%)
Mutual labels:  craft, craftcms
craft-cpjs
Control Panel JS plugin for Craft CMS
Stars: ✭ 42 (-63.48%)
Mutual labels:  craft, craftcms
Craft.patrol
Patrol simplifies SSL and maintenance routing for sites built with Craft
Stars: ✭ 91 (-20.87%)
Mutual labels:  craftcms, craft
picpuller-for-craft3
Pic Puller for Craft 3 lets authorized users pull in their Instagram media into Craft.
Stars: ✭ 12 (-89.57%)
Mutual labels:  craft, craftcms
Awesome
A collection of awesome Craft CMS plugins, articles, resources and shiny things.
Stars: ✭ 449 (+290.43%)
Mutual labels:  craftcms, craft
craft-bulkedit
Bulk edit any set of elements
Stars: ✭ 22 (-80.87%)
Mutual labels:  craft, craftcms
Buttonbox
A collection of utility field types for Craft
Stars: ✭ 94 (-18.26%)
Mutual labels:  craftcms, craft
Craft Copy
Deployment tools for Craft on fortrabbit
Stars: ✭ 64 (-44.35%)
Mutual labels:  craftcms, craft
molecule
⚛️ Grab Twig components, CSS and JS files outside the primary template folder
Stars: ✭ 20 (-82.61%)
Mutual labels:  craft, craftcms
Craftcms Docker
Craft3/Craft2 CMS Docker base (Nginx, PHP-FPM 8, PostgreSQL/MariaDB, Redis)
Stars: ✭ 99 (-13.91%)
Mutual labels:  craftcms, craft
padstone
Padstone is a Craft CMS starter kit with a curated configuration, Boilerplate templates, and handpicked plugins.
Stars: ✭ 18 (-84.35%)
Mutual labels:  craft, craftcms
Craft Async Queue
Async Queue Handler for Craft 3
Stars: ✭ 80 (-30.43%)
Mutual labels:  craftcms, craft
visor
🕶 A simple admin overlay to get to the relevant areas of the Craft CMS control panel.
Stars: ✭ 25 (-78.26%)
Mutual labels:  craft, craftcms
craft-entriessubset
Craft field type plugin that extends the core Entries field type to give extra settings
Stars: ✭ 27 (-76.52%)
Mutual labels:  craft, craftcms
craft-elixir
Craft Plugin that allows you to use Laravel's Elixir in Craft templates
Stars: ✭ 15 (-86.96%)
Mutual labels:  craft, craftcms
craft.patrol
Patrol simplifies SSL and maintenance routing for sites built with Craft
Stars: ✭ 90 (-21.74%)
Mutual labels:  craft, craftcms
Craft Brief
Quick, easy, and customizable user-group notifications for Craft CMS.
Stars: ✭ 47 (-59.13%)
Mutual labels:  craftcms, craft
Craft Inventory
Inventory plugin for Craft CMS
Stars: ✭ 65 (-43.48%)
Mutual labels:  craftcms, craft

Control Panel CSS plugin for Craft CMS

Easily overwrite the default Control Panel styles that ship with Craft.


After you've installed the plugin, go to:

  • Settings > Control Panel CSS

Your custom CSS can be saved in either (or both) of two places:

1) An external file in your public directory...

2) The "Additional CSS" field on the settings page...

You can now customize the CSS in any way you see fit!


Starter Code

Customizing your CSS is pretty easy. But to make it even easier, here's a snippet to get you started...

/* Sidebar background color */
#global-sidebar {
    background: #333f4d;
}

/* Header background color */
#main-container #main #header {
    background: #ebedef;
}

/* H1 tags */
h1 {
    color: #29323d;
}

/* Standard button color */
.btn.submit {
    background: #da5a47;
}
/* Hover button color */
.btn.submit:not(.disabled):not(.inactive):hover,
.btn.submit:not(.disabled):not(.inactive).hover {
    background: #bf503f;
}
/* Active button color */
.btn.submit:not(.disabled):not(.inactive):active,
.btn.submit:not(.disabled):not(.inactive).active {
    background: #8c3b2e;
}

And here's the same code as a Gist...


Anything else?

We've got other plugins too!

Check out the full catalog at doublesecretagency.com/plugins

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].