Styling twitter bootstrap buttons

前端 未结 14 2768
庸人自扰
庸人自扰 2020-12-04 05:18

Twitter-Bootstrap buttons are awesomely beautiful. Try them out by scrolling over them

\"bootstrap

14条回答
  •  难免孤独
    2020-12-04 06:03

    If you are already loading your own custom CSS file after loading bootstrap.css (version 3) you can add these 2 CSS styles to your custom.css and they will override the bootstrap defaults for the default button style.

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    
      background-color: #A6A8C1;
      border-color: #31347B;
     }
    
    .btn
    {
      background-color: #9F418F;
      border-color: #9F418F;
    }
    

提交回复
热议问题