style.css
// Create new folder in theme folder
// Add a file within that folder called "style.css"
// Put the following content into that folder, changing out names
/*
Theme Name: My Blog
Theme URI: http://myblog.com
Description: Custom theme based on name_of_parent_template
Author: Megan Woo
Author URI: http://meganwoo.com
Template: name_of_parent_template
Version: 1.0
*/
@import url("../name_of_parent_template/style.css");
/* =Theme customization starts here
-------------------------------------------------------------- */
/**************** COLORS *************************/
/**************** FONTS **************************/
/***************** GENERAL ***********************/
/***************** STRUCTURE *********************/
/***************** HEADER ************************/
/***************** PAGES *************************/
/***************** FOOTER ************************/
/***************** MEDIA QUERIES *****************/
@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:480px) {
}
@media screen and (max-width:320px) {
}