0

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

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

4

2 回答 2

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

更改导航栏固定菜单栏中的背景颜色 Bootstrap

你也可以看看这个

于 2013-06-08T15:32:12.980 回答
0

如果您想更改颜色或自定义 twitter bootstrap 的样式(例如标题、链接等),您可以使用生成器 for twitter bootstrap..

发电机

或者,如果您不知道样式的类/id 药水,您可以在浏览器上使用检查元素并使用样式的类/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;
}

引导主题

你可以在这里看到一些很棒的引导主题

于 2013-06-08T15:39:44.660 回答