moved bootstrap to none responsive.
This commit is contained in:
parent
92f4f20ecc
commit
61688d7aef
|
@ -11,4 +11,5 @@
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 40px;
|
width: 40px;
|
||||||
padding-top: 14px;
|
padding-top: 14px;
|
||||||
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ namespace NzbDrone.Web
|
||||||
|
|
||||||
bundles.Add<StylesheetBundle>(BASE_STYLE, new[]{
|
bundles.Add<StylesheetBundle>(BASE_STYLE, new[]{
|
||||||
"content2\\Bootstrap\\bootstrap.less",
|
"content2\\Bootstrap\\bootstrap.less",
|
||||||
"content2\\Bootstrap\\responsive.less",
|
//"content2\\Bootstrap\\responsive.less",
|
||||||
//"content2\\bootstrap-metro.css",
|
//"content2\\bootstrap-metro.css",
|
||||||
"content2\\base.css",
|
"content2\\base.css",
|
||||||
"content2\\menu.css",
|
"content2\\menu.css",
|
||||||
|
|
|
@ -250,8 +250,8 @@
|
||||||
|
|
||||||
// Default 940px grid
|
// Default 940px grid
|
||||||
// -------------------------
|
// -------------------------
|
||||||
@gridColumns: 12;
|
@gridColumns: 20;
|
||||||
@gridColumnWidth: 60px;
|
@gridColumnWidth: 50px;
|
||||||
@gridGutterWidth: 20px;
|
@gridGutterWidth: 20px;
|
||||||
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
||||||
|
|
||||||
|
|
|
@ -33,11 +33,13 @@ body {
|
||||||
|
|
||||||
#main-region {
|
#main-region {
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nz-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
text-align: center;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
|
|
|
@ -28,9 +28,8 @@
|
||||||
<body>
|
<body>
|
||||||
@RenderBody()
|
@RenderBody()
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<div id="menu" class="row">
|
<div id="menu" class="row">
|
||||||
<div class="span12">
|
<div class="span20">
|
||||||
<ul>
|
<ul>
|
||||||
@MvcHtmlString.Create(Html.CurrentControllerLink("Series", "Index", "Series"))
|
@MvcHtmlString.Create(Html.CurrentControllerLink("Series", "Index", "Series"))
|
||||||
@MvcHtmlString.Create(Html.CurrentControllerLink("Upcoming", "Index", "Upcoming"))
|
@MvcHtmlString.Create(Html.CurrentControllerLink("Upcoming", "Index", "Upcoming"))
|
||||||
|
@ -46,22 +45,22 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="logo" class="row">
|
<div id="logo" class="row">
|
||||||
<div class="span10 offset1">
|
<div class="span18 offset2">
|
||||||
@ViewBag.Title
|
@ViewBag.Title
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="content" class="row">
|
<div id="content" class="row">
|
||||||
<div class="span12">
|
<div class="span20">
|
||||||
<div class="row sub-menu">
|
<div class="row sub-menu">
|
||||||
@RenderSection("ActionMenu", required: false)
|
@RenderSection("ActionMenu", required: false)
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div id="main-region" class="span12"></div>
|
<div id="main-region" class="span20 nz-center"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="footer" class="row">
|
<div id="footer" class="row nz-center">
|
||||||
<div class="span12">
|
<div class="span20">
|
||||||
@{Html.RenderAction("Footer", "Shared");}
|
@{Html.RenderAction("Footer", "Shared");}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue