﻿.foo
{
}
/* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the DetailsView control adapter is enabled. */

.AspNet-DetailsView
{
}

div.AspNet-DetailsView-Data ul
{
    margin-left: 0px;
    padding-left: 0px;
    list-style-position: outside;
}

div.AspNet-DetailsView-Header
{
    font-size: 1.1em;
    font-weight: bold;
    padding: 2px 4px 2px 4px;
    position: relative;
}

/* Each field defined for the DetailsView generates an individual list item (li) in the rendered HTML. */
/* Each li effectively is a row in a table (though no table tag is generated by the adapter). */
div.AspNet-DetailsView-Data li
{
    position: relative;
    list-style-type: none;
    margin-left: 0px;
    padding: 3px 0px 2px 4px;
    color: #475158;
    background-color: #C8D3D5;
    vertical-align: middle;
    min-height: 1.4em; /* ADDED for Firefox */
}

/* Every other field is marked as being "Alternate." */
/* This allows you to define an "alternating row" style (though the adapter doesn't actually generate an HTML table). */
div.AspNet-DetailsView-Data li.AspNet-DetailsView-Alternate
{
    background-color: #ADBABD;
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Name
{
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 3px;
    font-weight: bold;
    padding-right: 10px;
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Value
{
    padding-left: 5px;
    display: inline-block;
    margin-left: 350px; /*185px; */
}

/* --------------------------------------------------------------------------------------------------- */
/* Please refer to FormViewExample.css for comments on these rules. */
.AspNet-DetailsView-Pagination
{
    background-color: #284775;
    text-align: center;
    padding: 4px 0 4px 0;
    position: relative;
}

.AspNet-DetailsView-ActivePage
{
    color: White;
    margin-left: 4px;
}

.AspNet-DetailsView-OtherPage
{
    color: #00FFFF;
    text-decoration: none;
    margin-left: 4px;
}

