Advertisement
saratbhaswanth

Tilvila stylesheet 04-04-15

Apr 4th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.61 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. .mmt_member_img:hover{
  26.     opacity:.7 ;
  27. }
  28.  
  29. .mmt_member_img img{         
  30. height : 180px;      
  31. width:180px;         
  32.  border-radius: 30px;        
  33.  -webkit-border-radius: 30px;        
  34.  -moz-border-radius: 30px;       
  35. }        
  36.  
  37. .mmt_bio_picture img {
  38.     border-radius: 30px;
  39.     height: 180px;
  40.     width: 180px;
  41. padding-bottom: 0;
  42. }
  43.  
  44. .navbar-inner{
  45.     padding-right: 5px;
  46. }
  47. .tc-header .nav-collapse{
  48.     float: none;
  49. }
  50. .navbar .nav {
  51.     width: 100%;
  52.     text-align: center;
  53.     -webkit-box-sizing: border-box;
  54.     -moz-box-sizing: border-box;
  55.     box-sizing: border-box;
  56. }
  57. .nav-collapse .nav > li{
  58.     float: none;
  59.     display: inline-block;
  60. }
  61. .nav-collapse .nav > li li{
  62.     text-align: left;
  63. }
  64. @media (max-width: 979px){
  65.     .nav-collapse .nav > li{
  66.         display: list-item;
  67.     }
  68. }
  69.  
  70. .navbar .nav>li.current-menu-ancestor>a,
  71. .navbar .nav>li.current-menu-item>a {
  72.     color: #7EC247;
  73.     background: #EEE;
  74. border: 1px solid #EEE;
  75. /*border-radius: 50%;*/
  76. }
  77. .navbar div>ul.nav>.menu-item:first-child>a {
  78. padding-left: 14px;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement