some css cleanup

pull/4/head
kay.one 13 years ago
parent 777afcff5f
commit f028770542

@ -19,28 +19,6 @@ fieldset
border-width: 1px;
}
h1
{
font-size: 52px;
}
h2
{
font-size: 26px;
}
h3
{
font-size: 18px;
}
p, ul, ol
{
line-height: 240%;
text-align: justify;
}
a
{
color: #065EFE;
@ -51,8 +29,6 @@ a:hover
text-decoration: none;
}
hr
{
display: none;
@ -60,17 +36,12 @@ hr
/* Menu */
#menu
{
height: 60px;
}
#menu ul
{
margin: 0;
padding: 8px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style: none;
line-height: normal;
}
#menu li
@ -83,8 +54,7 @@ hr
{
display: block;
float: left;
height: 28px;
padding: 7px 30px 0px 35px;
padding: 9px 30px 0px 35px;
letter-spacing: -1px;
text-decoration: none;
text-align: center;
@ -92,6 +62,7 @@ hr
font-size: 17px;
font-weight: normal;
vertical-align: middle;
height: 28px;
}
#menu a:hover
@ -232,12 +203,6 @@ button:active, input[type="button"]:active, input[type="submit"]:active, input[t
width: 400px;
}
/* Set the font size for Grids */
.Grid
{
font-size: 13px;
}
.edit-group
{
width: 435px;

@ -1,25 +1,23 @@
@using Helpers;
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link rel="SHORTCUT ICON" href="../../favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>NZBDrone</title>
@{Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css")
//.Add("Blueprint/screen.css")
//.Add("Blueprint/ie.css")
.Add("telerik.sitefinity.css")
//.Add("notibar.css")
//.Add("Site.css")
//.Add("jquery-ui.css")
//.Add("jquery-ui.custom.css").Compress(true))
).Render();}
<link href="/Content/Blueprint/screen.css" rel="stylesheet" type="text/css" />
<link href="/Content/Blueprint/ie.css" rel="stylesheet" type="text/css" />
<link type="text/css" href="http://aspnet-skins.telerikstatic.com/mvcz/2011.1.414/telerik.common.min.css"
rel="stylesheet" />
<link type="text/css" href="http://aspnet-skins.telerikstatic.com/mvcz/2011.1.414/telerik.sitefinity.min.css"
rel="stylesheet" />
<link type="text/css" href="http://aspnet-skins.telerikstatic.com/mvcz/2011.1.414/telerik.rtl.min.css"
rel="stylesheet" />
<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
@MvcMiniProfiler.MiniProfiler.RenderIncludes()
@RenderSection("HeaderContent", required: false)
</head>
<body>
<div class="container">
<div id="menu" class="span-24 last">
<div id="menu" class="span-24 last prepend-top append-bottom">
<ul>
@MvcHtmlString.Create(Html.CurrentActionLink("Series", "Index", "Series"))
@MvcHtmlString.Create(Html.CurrentActionLink("Upcoming", "Index", "Upcoming"))
@ -29,14 +27,18 @@
</ul>
</div>
<hr />
<div id="logo" class="span-24 last">
@RenderSection("TitleContent", required: false)
<div class="span-24 last">
<div id="logo">
@RenderSection("TitleContent", required: false)
</div>
</div>
<hr />
<div id="page" class="span-24 last">
@RenderSection("ActionMenu", required: false)
@RenderSection("MainContent", required: false)
@RenderBody()
<div class="span-24 last">
<div id="page">
@RenderSection("ActionMenu", required: false)
@RenderSection("MainContent", required: false)
@RenderBody()
</div>
</div>
<hr />
<div id="footer" class="span-24 last">

Loading…
Cancel
Save