我正在使用来自 twitter bootstrap 示例模板的示例页面。
http://twitter.github.io/bootstrap/examples/starter-template.html
我想知道是否可以在其中包含自定义 css 文件?添加一些定制?
我将启动器模板文件保存为shared.html
并且我有_files
文件夹。我应该如何或在哪里放置custom.css
文件?我还能做到吗?实现这样的目标的最佳方法是什么?
这是我的 shared.html 文件,它在样式区域中有以下几行:
<link href="twitter.github.io/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<style>
body { padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ }
</style>
<link href="twitter.github.io/bootstrap/assets/css/… rel="stylesheet">
这是我的导航栏部分代码:
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
这是我的 custom.css 文件
.navbar-inverse .navbar-fixed-top .navbar-inner {
background-color: #E01B5D; /* fallback color, place your own */
/* Gradients for modern browsers, replace as you see fit */
background-image: -moz-linear-gradient(top, #333333, #222222);
background-image: -ms-linear-gradient(top, #333333, #222222);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
background-image: -webkit-linear-gradient(top, #333333, #222222);
background-image: -o-linear-gradient(top, #333333, #222222);
background-image: linear-gradient(top, #333333, #222222);
background-repeat: repeat-x;
/* IE8-9 gradient filter */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
}