Skip to content

Instantly share code, notes, and snippets.

@suthagar23
Created September 15, 2017 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suthagar23/d1039a0f25e79b1b5eaba43632aff035 to your computer and use it in GitHub Desktop.
Save suthagar23/d1039a0f25e79b1b5eaba43632aff035 to your computer and use it in GitHub Desktop.
WSO2 API Store theme update CSS code
/* Change the color of the header */
header.header-default {
background: #555555 none repeat scroll 0 0;
}
/* Change the color of the Top Navigation Bar */
.navbar {
background: #555555 none repeat scroll 0 0;
}
/* Change the color of the search box and its fonts */
.search-wrap .appm-content-search {
background: #ffffff;
color: #000000;
}
.appm-content-search::-moz-placeholder {
color: #000000;
}
/* Change the color of the Search box dropdown button */
.search-wrap .btn.dropdown-toggle {
background: #555555 none repeat scroll 0 0;
border-color: #555555;
}
/* Change the color of the Search box search button */
.search-wrap .btn.wrap-input-right {
background: #555555;
}
/* Change the font of the menus, headings, labels etc. to Verdana. You give several fonts here to ensure maximum compatibility, if in case one font fails in a given browser/OS. Fonts will be applied in the order you list them. */
body,textarea,pre,.navbar-search .search-query{
font-family: Verdana, Arial, Helvetica, monospace, san-serif;
}
label, input, button, select, textarea{
font-family: Verdana, Arial, Helvetica, monospace, san-serif;
}
h1,h2,h3,h4,h5{
font-family: Verdana, Arial, Helvetica, monospace, san-serif;
}
/* To change the background color of the body */
body{
background: #D0D0D0;
}
/* To change the color of the buttons. Note that changing only the background color will not have a visual impact if you leave the gradients as they are */
.btn-primary {
background-color: #800004;
background-image: linear-gradient(to bottom, #cc0022, #cc0044);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment