Rails / Bootstrap:如何更改顶部的黑条?

时间:2013-06-08 15:05:57

标签: ruby-on-rails twitter-bootstrap customization

railstutorial.org(http://ruby.railstutorial.org/chapters/filling-in-the-layout#top)的第5章讨论了如何为网站创建基本布局。我将它用作将Rails网站放在一起的资源。

我无法自定义导航栏/标题。虽然更改“示例应用程序”徽标的字体颜色非常简单(只需更改#logo下颜色参数的RGB设置),如何更改标题其余部分的参数?如何将黑色条更改为其他颜色,例如深蓝色/绿色/红色/紫色/棕色/等?如何将菜单链接(主页/帮助/注册)的颜色从默认灰色更改为黄色?还是橙色?还是其他一些颜色?

2 个答案:

答案 0 :(得分:0)

.navbar {
    .navbar-inner {
        background-color: #2c2c2c;
        background-image: none;
    }
}

来源Change background color in navbar fixed menu bar Bootstrap

您也可以查看this

答案 1 :(得分:0)

如果你想改变颜色或自定义twitter引导程序的样式(例如标题,链接等),你可以使用生成器进行twitter bootstrap ..

发电机

或者如果你不知道样式的class / id potition,你可以在浏览器上使用inspect元素并使用样式的类/ id看元素

实施例

使用蓝色标题

.navbar-inner {
    min-height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #45aeea;
    background-image: -moz-linear-gradient(top,#54b4eb,#2fa4e7);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#54b4eb),to(#2fa4e7));
    background-image: -webkit-linear-gradient(top,#54b4eb,#2fa4e7);
    background-image: -o-linear-gradient(top,#54b4eb,#2fa4e7);
    background-image: linear-gradient(to bottom,#54b4eb,#2fa4e7);
    background-repeat: repeat-x;
    border: 1px solid #1990d5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff54b4eb',endColorstr='#ff2fa4e7',GradientType=0);
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
    -moz-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
    box-shadow: 0 1px 4px rgba(0,0,0,0.065);
   }

使用白色链接标题

.navbar .nav>li>a {
   float: none;
   padding: 10px 15px 10px;
   color: #fff;
   text-decoration: none;
   text-shadow: 0 1px 0 #ce4213;
}

Bootstrap主题

你可以看到一些惊人的引导主题here