Advertisement
saratbhaswanth

Tilvila Theme

Feb 11th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. /**
  2. * Theme Name: Customizr
  3. * Theme URI: http://themesandco.com/customizr
  4. * Description: Navigate to Appearance, Customize. Design in live preview, save and enjoy a beautiful, fast and responsive website compatible with all browsers. For developers, Customizr offers a well documented and modular code, easy to extend with hooks.
  5. * Version: 3.2.17
  6. * Author: nikeo
  7. * Author URI: http://themesandco.com/
  8. * Tags: gray, white, light, blue, red, yellow, green, purple, orange, black, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fluid-layout, responsive-layout, custom-menu, custom-colors, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post, post-formats, rtl-language-support, editor-style
  9. * Text Domain: customizr
  10. * Copyright: (c) 2015 Nicolas GUILLAUME (nikeo), Nice, France
  11. * License: GNU General Public License v2.0 or later
  12. * License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. */
  14.  
  15.  
  16. /**
  17. * The styleheets of Customizr are located in inc/assets/css. Each skin has its own stylesheet : blue.css, green.css, ...
  18. * The current stylesheet is loaded after the main skin stylesheet.
  19. *
  20. * IMPORTANT : If you write your CSS code below, it will be deleted when you'll update the theme.
  21. * If you want to make quick style test / changes, consider using the Custom CSS section in appearance > customize > advanced options > Custom CSS, it will persist on update since it is saved in your database.
  22. * To make important CSS customizations, you'll want to use a child theme and add your css code in the style.css file of it.
  23. */
  24. /**
  25. /* Adjust Menu (red) text color, (Garamond) font-family, (1.5em) font-size */
  26. .navbar .nav > li > a, .navbar .nav > li > a:first-letter,
  27. .navbar .nav > li.current-menu-item > a,
  28. .navbar .nav > li.current-menu-ancestor > a {
  29. display: inline;
  30. color: red;
  31. font-family: Josefin Sans;
  32. font-size: 11pt;
  33. padding: 5px 20px;
  34. }
  35.  
  36. /* Adjust Menu colors - Normal */
  37. .navbar .nav > li > a, .navbar .nav > li > a:first-letter {
  38. color: green;
  39. text-shadow: none;
  40. }
  41. /* Adjust Menu colors - Hover */
  42. .navbar .nav > li > a:hover, .navbar .nav > li > a:hover:first-letter {
  43. color: sienna;
  44. text-shadow: none;
  45. }
  46. /* Adjust Menu colors - Active */
  47. .navbar .nav > li > a:active, .navbar .nav > li > a:active:first-letter,
  48. .navbar .nav > li.current-menu-item > a,
  49. .navbar .nav > li.current-menu-ancestor > a,
  50. .navbar .nav > li.current-menu-item > a:first-letter,
  51. .navbar .nav > li.current-menu-ancestor > a:first-letter {
  52. color: tomato;
  53. text-shadow: none;
  54. border : 1px solid seagreen;
  55. border-radius: 30px;
  56. }
  57.  
  58. /* Adjust dropdown Menu items (blue) text color & (yellow) shading */
  59. .dropdown-menu > li > a {
  60. color: blue;
  61. background: yellow;
  62. }
  63.  
  64. .navbar div > ul.nav > .menu-item:last-child > a {
  65. padding: auto;
  66. }
  67. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement