completato porting template pagina test admin
This commit is contained in:
BIN
Binary file not shown.
@@ -16,11 +16,12 @@
|
||||
<link rel="shortcut icon" href="~/favicon.ico">
|
||||
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
||||
<title><%: Page.Title %> - C2P</title>
|
||||
<%--
|
||||
|
||||
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
|
||||
<%: Scripts.Render("~/bundles/modernizr") %>
|
||||
</asp:PlaceHolder>
|
||||
--%>
|
||||
|
||||
|
||||
<webopt:BundleReference ID="BundleReference1" runat="server" Path="~/Content/css" />
|
||||
<webopt:BundleReference ID="BundleReference2" runat="server" Path="~/Content/themes/base/css" />
|
||||
<asp:ContentPlaceHolder ID="Head" runat="server">
|
||||
|
||||
Generated
+9
@@ -12,6 +12,15 @@ namespace C2P {
|
||||
|
||||
public partial class Bootstrap {
|
||||
|
||||
/// <summary>
|
||||
/// PlaceHolder1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder PlaceHolder1;
|
||||
|
||||
/// <summary>
|
||||
/// BundleReference1 control.
|
||||
/// </summary>
|
||||
|
||||
+683
-2
@@ -7,6 +7,9 @@
|
||||
.allOk {
|
||||
color: green;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ navbar / .navbar ]
|
||||
*/
|
||||
.navbar.navbar-inverse .navbar-form .search-query {
|
||||
width: 225px;
|
||||
margin-top: 2px;
|
||||
@@ -27,10 +30,184 @@
|
||||
.navbar.navbar-inverse .navbar-form .search-query::-moz-placeholder {
|
||||
color: #666;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ Subnavbar / .subnavbar ]
|
||||
*/
|
||||
.subnavbar {
|
||||
margin-bottom: 2.5em;
|
||||
border-top: 1px solid #595959;
|
||||
}
|
||||
.subnavbar .subnav-toggle {
|
||||
display: none;
|
||||
padding: .5em 0;
|
||||
margin: 0 auto;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
color: #ff9900;
|
||||
}
|
||||
.subnavbar .subnav-toggle:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .subnavbar-inner {
|
||||
height: 80px;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#414141), to(#323232));
|
||||
background-image: -webkit-linear-gradient(top, #414141, 0%, #323232, 100%);
|
||||
background-image: -moz-linear-gradient(top, #414141 0%, #323232 100%);
|
||||
background-image: linear-gradient(to bottom, #414141 0%, #323232 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff414141', endColorstr='#ff323232', GradientType=0);
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
.subnavbar .btn-subnavbar {
|
||||
display: none;
|
||||
padding: 10px 0 8px;
|
||||
color: #F90;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.subnavbar .btn-subnavbar:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .dropdown .caret {
|
||||
margin-top: -16px;
|
||||
border-top-color: #888;
|
||||
border-bottom-color: #888;
|
||||
opacity: 35;
|
||||
filter: alpha(opacity=3500);
|
||||
}
|
||||
.subnavbar .dropdown.open .caret {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .mainnav {
|
||||
display: inline-block;
|
||||
height: 80px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-left: 1px solid #292929;
|
||||
border-right: 1px solid #4A4A4A;
|
||||
}
|
||||
.subnavbar .mainnav > li {
|
||||
float: left;
|
||||
min-width: 90px;
|
||||
height: 80px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
border-left: 1px solid #4A4A4A;
|
||||
border-right: 1px solid #292929;
|
||||
}
|
||||
.subnavbar .mainnav > li > a {
|
||||
display: block;
|
||||
height: 100%;
|
||||
padding: 0 15px;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #636363;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.subnavbar .mainnav > li > a:hover {
|
||||
color: #888;
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > i {
|
||||
position: relative;
|
||||
top: 2px;
|
||||
display: inline-block;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin-top: 12px;
|
||||
margin-bottom: 9px;
|
||||
font-size: 28px;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > span {
|
||||
display: block;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.subnavbar .mainnav > li.open > a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
background: #333;
|
||||
color: #F90;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a .caret {
|
||||
border-top-color: #ff9900;
|
||||
border-bottom-color: #ff9900;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu {
|
||||
top: 97%;
|
||||
text-align: left;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-webkit-border-top-right-radius: 0;
|
||||
-moz-border-radius-topleft: 0;
|
||||
-moz-border-radius-topright: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu a {
|
||||
font-size: 12px;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu::before,
|
||||
.subnavbar .dropdown > .dropdown-menu::after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid #CCC;
|
||||
border-bottom-color: rgba(0, 0, 0, 0.2);
|
||||
position: absolute;
|
||||
top: -7px;
|
||||
left: 9px;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu::after {
|
||||
border-left-width: 6px;
|
||||
border-right-width: 6px;
|
||||
border-bottom-width: 6px;
|
||||
border-bottom-color: #fff;
|
||||
top: -6px;
|
||||
left: 10px;
|
||||
}
|
||||
.subnavbar .dropdown-submenu .dropdown-menu:after,
|
||||
.subnavbar .dropdown-submenu .dropdown-menu:before {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .subnav-collapse.collapse {
|
||||
height: auto\9;
|
||||
overflow: visible\9;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ Shortcuts / .shortcuts ]
|
||||
*/
|
||||
.shortcuts {
|
||||
text-align: center;
|
||||
}
|
||||
.shortcuts .shortcut {
|
||||
width: 110px;
|
||||
display: inline-block;
|
||||
padding: 15px 0;
|
||||
margin: 0 5px 1em;
|
||||
vertical-align: top;
|
||||
text-decoration: none;
|
||||
background: #F3F3F3;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%);
|
||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
|
||||
border: 1px solid #ddd;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-icon {
|
||||
width: 100%;
|
||||
margin-top: .25em;
|
||||
margin-bottom: .35em;
|
||||
/*margin-top: .25em;
|
||||
margin-bottom: .35em;*/
|
||||
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 32px;
|
||||
color: #555;
|
||||
}
|
||||
@@ -55,6 +232,69 @@
|
||||
font-weight: 400;
|
||||
color: #666;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ widget / .widget ]
|
||||
*/
|
||||
.widget {
|
||||
position: relative;
|
||||
clear: both;
|
||||
width: auto;
|
||||
margin-bottom: 2em;
|
||||
/* Clearfix Hack */
|
||||
|
||||
/* Widget Table */
|
||||
|
||||
/* Widget Plain */
|
||||
|
||||
/* Widget Box */
|
||||
|
||||
}
|
||||
.widget .widget-header {
|
||||
position: relative;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
background: #E9E9E9;
|
||||
background: -moz-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* FF3.6+ */
|
||||
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #e9e9e9));
|
||||
/* Chrome,Safari4+ */
|
||||
|
||||
background: -webkit-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* Chrome10+,Safari5.1+ */
|
||||
|
||||
background: -o-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* Opera11.10+ */
|
||||
|
||||
background: -ms-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* IE10+ */
|
||||
|
||||
background: linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* W3C */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
|
||||
border: 1px solid #D5D5D5;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-moz-border-radius-topright: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-webkit-background-clip: padding-box;
|
||||
}
|
||||
.widget .widget-header h3 {
|
||||
top: 0;
|
||||
position: relative;
|
||||
left: 10px;
|
||||
display: inline-block;
|
||||
margin-right: 3em;
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: #555;
|
||||
line-height: 18px;
|
||||
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.widget .widget-header [class^="fa-"],
|
||||
.widget .widget-header [class*=" fa-"] {
|
||||
display: inline-block;
|
||||
@@ -65,3 +305,444 @@
|
||||
color: #555;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.widget .widget-content {
|
||||
padding: 25px 15px 15px;
|
||||
background: #FFF;
|
||||
border: 1px solid #D5D5D5;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.widget .widget-header + .widget-content {
|
||||
border-top: none;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-webkit-border-top-right-radius: 0;
|
||||
-moz-border-radius-topleft: 0;
|
||||
-moz-border-radius-topright: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.widget.widget-nopad .widget-content {
|
||||
padding: 0;
|
||||
}
|
||||
.widget .widget-content:before,
|
||||
.widget .widget-content:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.widget .widget-content:after {
|
||||
clear: both;
|
||||
}
|
||||
.widget .widget-content:before,
|
||||
.widget .widget-content:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.widget .widget-content:after {
|
||||
clear: both;
|
||||
}
|
||||
.widget.widget-table .widget-content {
|
||||
padding: 0;
|
||||
}
|
||||
.widget.widget-table .table {
|
||||
margin-bottom: 0;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-table .table tr td:first-child,
|
||||
.widget.widget-table .table tr th:first-child {
|
||||
border-left: none;
|
||||
}
|
||||
.widget.widget-plain {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-plain .widget-content {
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-box .widget-content {
|
||||
background: #E3E3E3;
|
||||
background: #FFF;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ Stacked / .stacked ]
|
||||
*/
|
||||
.stacked {
|
||||
position: relative;
|
||||
}
|
||||
.stacked:after,
|
||||
.stacked:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
display: block;
|
||||
height: 1px;
|
||||
bottom: -2px;
|
||||
left: 3px;
|
||||
right: 3px;
|
||||
background-color: #ffffff;
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
border: 1px solid #d3d3d3;
|
||||
border-top: 0;
|
||||
}
|
||||
.stacked:before {
|
||||
bottom: -4px;
|
||||
left: 6px;
|
||||
right: 6px;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[2. Stats / .stats]
|
||||
*/
|
||||
.stats {
|
||||
width: 100%;
|
||||
display: table;
|
||||
padding: 0 0 0 10px;
|
||||
margin-top: .5em;
|
||||
margin-bottom: 1.9em;
|
||||
}
|
||||
.stats .stat {
|
||||
display: table-cell;
|
||||
width: 40%;
|
||||
vertical-align: top;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
color: #999;
|
||||
}
|
||||
.stat-value {
|
||||
display: block;
|
||||
margin-bottom: .55em;
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
letter-spacing: -2px;
|
||||
color: #444;
|
||||
}
|
||||
.stat-time {
|
||||
text-align: center;
|
||||
padding-top: 1.5em;
|
||||
}
|
||||
.stat-time .stat-value {
|
||||
color: #F90;
|
||||
font-size: 40px;
|
||||
}
|
||||
.stats #donut-chart {
|
||||
height: 100px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[3. News Item / .news-items]
|
||||
*/
|
||||
.news-items {
|
||||
padding: 0;
|
||||
margin: 1em 0 0;
|
||||
}
|
||||
.news-items li {
|
||||
display: table;
|
||||
padding: 0 2em 0 1.5em;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
border-bottom: 1px dotted #CCC;
|
||||
}
|
||||
.news-items li:last-child {
|
||||
padding-bottom: 0;
|
||||
border: none;
|
||||
}
|
||||
.news-item-date {
|
||||
display: table-cell;
|
||||
}
|
||||
.news-item-detail {
|
||||
display: table-cell;
|
||||
}
|
||||
.news-item-title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.news-item-date {
|
||||
width: 75px;
|
||||
vertical-align: middle;
|
||||
text-align: right;
|
||||
}
|
||||
.news-item-day {
|
||||
display: block;
|
||||
margin-bottom: .25em;
|
||||
font-size: 24px;
|
||||
color: #888;
|
||||
}
|
||||
.news-item-preview {
|
||||
margin-bottom: 0;
|
||||
color: #777;
|
||||
}
|
||||
.news-item-month {
|
||||
display: block;
|
||||
padding-right: 1px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[4. Action Table / .action-table]
|
||||
*/
|
||||
.action-table .btn-small {
|
||||
padding: 4px 5px 5px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.action-table .td-actions {
|
||||
width: 80px;
|
||||
text-align: center;
|
||||
}
|
||||
.action-table .td-actions .btn {
|
||||
margin-right: .5em;
|
||||
}
|
||||
.action-table .td-actions .btn:last-child {
|
||||
margin-rigth: 0;
|
||||
}
|
||||
@media (max-width: 979px) {
|
||||
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.stats .stat {
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
.stats .stat .stat-value {
|
||||
margin-bottom: .15em;
|
||||
font-size: 20px;
|
||||
}
|
||||
.stats {
|
||||
float: left;
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#chart-stats {
|
||||
margin: 2em 0 1em;
|
||||
}
|
||||
}
|
||||
/* RESPONSIVE x subnav */
|
||||
/*------------------------------------------------------------------
|
||||
[1. Max Width: 480px]
|
||||
*/
|
||||
@media (max-width: 480px) {
|
||||
.error-container h1 {
|
||||
font-size: 72px;
|
||||
}
|
||||
.shortcuts .shortcut {
|
||||
width: 95px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-label {
|
||||
font-size: 12px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-icon {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[3. Max Width: 979px]
|
||||
*/
|
||||
@media (max-width: 979px) {
|
||||
.navbar-fixed-top {
|
||||
position: static;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.navbar .btn-navbar {
|
||||
font-size: 18px;
|
||||
background: none;
|
||||
filter: none;
|
||||
border: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.navbar .container {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.subnavbar .subnavbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
/* Extra small devices (phones, up to 480px) */
|
||||
/* No media query since this is the default in Bootstrap */
|
||||
@media (max-width: 768px) {
|
||||
.navbar {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.navbar .navbar-nav > li > .dropdown-menu::before,
|
||||
.navbar .navbar-nav > li > .dropdown-menu::after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .subnav-toggle {
|
||||
display: block;
|
||||
}
|
||||
#main {
|
||||
padding: 0 10px;
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.extra {
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.main .container {
|
||||
padding: 0;
|
||||
}
|
||||
.main .row {
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
.footer {
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.footer #footer-terms {
|
||||
margin-top: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
.footer #footer-terms a {
|
||||
margin-left: 0;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.item-row {
|
||||
display: block;
|
||||
}
|
||||
.item-row:before,
|
||||
.item-row:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.item-row:after {
|
||||
clear: both;
|
||||
}
|
||||
.item-row .item-label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
.item-row .item-content {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.subnavbar {
|
||||
margin-left: -20px;
|
||||
margin-right: -20px;
|
||||
}
|
||||
.subnavbar .btn-subnavbar {
|
||||
display: block;
|
||||
}
|
||||
.subnavbar .subnavbar-inner {
|
||||
height: auto;
|
||||
}
|
||||
.subnavbar .mainnav {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1.5em;
|
||||
border: none;
|
||||
}
|
||||
.subnavbar .mainnav > li {
|
||||
float: none;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
border: none;
|
||||
}
|
||||
.subnavbar .mainnav > li > a {
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-right: .5em;
|
||||
color: #CCC;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > span {
|
||||
display: inline;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > i {
|
||||
display: inline;
|
||||
margin-right: .5em;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.subnavbar .mainnav > li > a .caret {
|
||||
margin-top: -2px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
color: #F90;
|
||||
background: transparent;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu {
|
||||
position: static;
|
||||
float: none;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu a {
|
||||
padding: 12px 40px;
|
||||
color: #FFF;
|
||||
font-weight: 600;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu a:active,
|
||||
.subnavbar .dropdown .dropdown-menu a:focus {
|
||||
background: #555 !important;
|
||||
outline: none;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu::before,
|
||||
.subnavbar .dropdown .dropdown-menu::after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .dropdown.open .caret {
|
||||
display: inline-block;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > a:after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > .dropdown-menu {
|
||||
display: block;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > .dropdown-menu > li > a {
|
||||
padding-right: 20px;
|
||||
padding-left: 60px;
|
||||
}
|
||||
}
|
||||
/* Small devices (tablets, 768px and up) */
|
||||
@media (min-width: 768px) {
|
||||
.subnav-collapse.collapse {
|
||||
display: block!important;
|
||||
height: auto!important;
|
||||
padding-bottom: 0;
|
||||
overflow: visible!important;
|
||||
}
|
||||
}
|
||||
/* Medium devices (desktops, 992px and up) */
|
||||
@media (min-width: 992px) {
|
||||
|
||||
}
|
||||
/* Large devices (large desktops, 1200px and up) */
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container,
|
||||
.subnavbar .container {
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
.page-title {
|
||||
margin-left: -15px;
|
||||
}
|
||||
}
|
||||
|
||||
+738
-3
@@ -9,6 +9,9 @@
|
||||
color: green;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[ navbar / .navbar ]
|
||||
*/
|
||||
.navbar.navbar-inverse .navbar-form .search-query {
|
||||
width: 225px;
|
||||
margin-top: 2px;
|
||||
@@ -29,10 +32,186 @@
|
||||
.navbar.navbar-inverse .navbar-form .search-query::-moz-placeholder {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[ Subnavbar / .subnavbar ]
|
||||
*/
|
||||
.subnavbar {
|
||||
margin-bottom: 2.5em;
|
||||
border-top: 1px solid #595959;
|
||||
}
|
||||
.subnavbar .subnav-toggle {
|
||||
display: none;
|
||||
padding: .5em 0;
|
||||
margin: 0 auto;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
color: #ff9900;
|
||||
}
|
||||
.subnavbar .subnav-toggle:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .subnavbar-inner {
|
||||
height: 80px;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#414141), to(#323232));
|
||||
background-image: -webkit-linear-gradient(top, #414141, 0%, #323232, 100%);
|
||||
background-image: -moz-linear-gradient(top, #414141 0%, #323232 100%);
|
||||
background-image: linear-gradient(to bottom, #414141 0%, #323232 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff414141', endColorstr='#ff323232', GradientType=0);
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
.subnavbar .btn-subnavbar {
|
||||
display: none;
|
||||
padding: 10px 0 8px;
|
||||
color: #F90;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.subnavbar .btn-subnavbar:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .dropdown .caret {
|
||||
margin-top: -16px;
|
||||
border-top-color: #888;
|
||||
border-bottom-color: #888;
|
||||
opacity: 35;
|
||||
filter: alpha(opacity=3500);
|
||||
}
|
||||
.subnavbar .dropdown.open .caret {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .mainnav {
|
||||
display: inline-block;
|
||||
height: 80px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-left: 1px solid #292929;
|
||||
border-right: 1px solid #4A4A4A;
|
||||
}
|
||||
.subnavbar .mainnav > li {
|
||||
float: left;
|
||||
min-width: 90px;
|
||||
height: 80px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
border-left: 1px solid #4A4A4A;
|
||||
border-right: 1px solid #292929;
|
||||
}
|
||||
.subnavbar .mainnav > li > a {
|
||||
display: block;
|
||||
height: 100%;
|
||||
padding: 0 15px;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #636363;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.subnavbar .mainnav > li > a:hover {
|
||||
color: #888;
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > i {
|
||||
position: relative;
|
||||
top: 2px;
|
||||
display: inline-block;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin-top: 12px;
|
||||
margin-bottom: 9px;
|
||||
font-size: 28px;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > span {
|
||||
display: block;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.subnavbar .mainnav > li.open > a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
background: #333;
|
||||
color: #F90;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a .caret {
|
||||
border-top-color: #ff9900;
|
||||
border-bottom-color: #ff9900;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu {
|
||||
top: 97%;
|
||||
text-align: left;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-webkit-border-top-right-radius: 0;
|
||||
-moz-border-radius-topleft: 0;
|
||||
-moz-border-radius-topright: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu a {
|
||||
font-size: 12px;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu::before,
|
||||
.subnavbar .dropdown > .dropdown-menu::after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
border-left: 7px solid transparent;
|
||||
border-right: 7px solid transparent;
|
||||
border-bottom: 7px solid #CCC;
|
||||
border-bottom-color: rgba(0, 0, 0, 0.2);
|
||||
position: absolute;
|
||||
top: -7px;
|
||||
left: 9px;
|
||||
}
|
||||
.subnavbar .dropdown > .dropdown-menu::after {
|
||||
border-left-width: 6px;
|
||||
border-right-width: 6px;
|
||||
border-bottom-width: 6px;
|
||||
border-bottom-color: #fff;
|
||||
top: -6px;
|
||||
left: 10px;
|
||||
}
|
||||
.subnavbar .dropdown-submenu .dropdown-menu:after,
|
||||
.subnavbar .dropdown-submenu .dropdown-menu:before {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .subnav-collapse.collapse {
|
||||
height: auto\9;
|
||||
overflow: visible\9;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[ Shortcuts / .shortcuts ]
|
||||
*/
|
||||
.shortcuts {
|
||||
text-align: center;
|
||||
}
|
||||
.shortcuts .shortcut {
|
||||
width: 110px;
|
||||
display: inline-block;
|
||||
padding: 15px 0;
|
||||
margin: 0 5px 1em;
|
||||
vertical-align: top;
|
||||
text-decoration: none;
|
||||
background: #F3F3F3;
|
||||
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%);
|
||||
background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
|
||||
border: 1px solid #ddd;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-icon {
|
||||
width: 100%;
|
||||
margin-top: .25em;
|
||||
margin-bottom: .35em;
|
||||
/*margin-top: .25em;
|
||||
margin-bottom: .35em;*/
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 32px;
|
||||
color: #555;
|
||||
}
|
||||
@@ -57,6 +236,72 @@
|
||||
font-weight: 400;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[ widget / .widget ]
|
||||
*/
|
||||
.widget {
|
||||
position: relative;
|
||||
clear: both;
|
||||
width: auto;
|
||||
margin-bottom: 2em;
|
||||
/* Clearfix Hack */
|
||||
|
||||
/* Widget Table */
|
||||
|
||||
/* Widget Plain */
|
||||
|
||||
/* Widget Box */
|
||||
|
||||
}
|
||||
.widget .widget-header {
|
||||
position: relative;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
background: #E9E9E9;
|
||||
background: -moz-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* FF3.6+ */
|
||||
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #e9e9e9));
|
||||
/* Chrome,Safari4+ */
|
||||
|
||||
background: -webkit-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* Chrome10+,Safari5.1+ */
|
||||
|
||||
background: -o-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* Opera11.10+ */
|
||||
|
||||
background: -ms-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* IE10+ */
|
||||
|
||||
background: linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
|
||||
/* W3C */
|
||||
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
|
||||
border: 1px solid #D5D5D5;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-moz-border-radius-topright: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-webkit-background-clip: padding-box;
|
||||
}
|
||||
.widget .widget-header h3 {
|
||||
top: 0;
|
||||
position: relative;
|
||||
left: 10px;
|
||||
display: inline-block;
|
||||
margin-right: 3em;
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: #555;
|
||||
line-height: 18px;
|
||||
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.widget .widget-header [class^="fa-"],
|
||||
.widget .widget-header [class*=" fa-"] {
|
||||
display: inline-block;
|
||||
@@ -66,4 +311,494 @@
|
||||
font-size: 16px;
|
||||
color: #555;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
.widget .widget-content {
|
||||
padding: 25px 15px 15px;
|
||||
background: #FFF;
|
||||
border: 1px solid #D5D5D5;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.widget .widget-header + .widget-content {
|
||||
border-top: none;
|
||||
-webkit-border-top-left-radius: 0;
|
||||
-webkit-border-top-right-radius: 0;
|
||||
-moz-border-radius-topleft: 0;
|
||||
-moz-border-radius-topright: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.widget.widget-nopad .widget-content {
|
||||
padding: 0;
|
||||
}
|
||||
.widget .widget-content:before,
|
||||
.widget .widget-content:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.widget .widget-content:after {
|
||||
clear: both;
|
||||
}
|
||||
.widget .widget-content:before,
|
||||
.widget .widget-content:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.widget .widget-content:after {
|
||||
clear: both;
|
||||
}
|
||||
.widget.widget-table .widget-content {
|
||||
padding: 0;
|
||||
}
|
||||
.widget.widget-table .table {
|
||||
margin-bottom: 0;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-table .table tr td:first-child,
|
||||
.widget.widget-table .table tr th:first-child {
|
||||
border-left: none;
|
||||
}
|
||||
.widget.widget-plain {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-plain .widget-content {
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
.widget.widget-box .widget-content {
|
||||
background: #E3E3E3;
|
||||
background: #FFF;
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[ Stacked / .stacked ]
|
||||
*/
|
||||
.stacked {
|
||||
position: relative;
|
||||
}
|
||||
.stacked:after,
|
||||
.stacked:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
display: block;
|
||||
height: 1px;
|
||||
bottom: -2px;
|
||||
left: 3px;
|
||||
right: 3px;
|
||||
background-color: #ffffff;
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
border: 1px solid #d3d3d3;
|
||||
border-top: 0;
|
||||
}
|
||||
.stacked:before {
|
||||
bottom: -4px;
|
||||
left: 6px;
|
||||
right: 6px;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[2. Stats / .stats]
|
||||
*/
|
||||
|
||||
.stats {
|
||||
width: 100%;
|
||||
display: table;
|
||||
padding: 0 0 0 10px;
|
||||
margin-top: .5em;
|
||||
margin-bottom: 1.9em;
|
||||
}
|
||||
|
||||
.stats .stat {
|
||||
display: table-cell;
|
||||
width: 40%;
|
||||
vertical-align: top;
|
||||
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
display: block;
|
||||
margin-bottom: .55em;
|
||||
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
letter-spacing: -2px;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.stat-time {
|
||||
text-align: center;
|
||||
padding-top: 1.5em;
|
||||
}
|
||||
|
||||
.stat-time .stat-value {
|
||||
color: #F90;
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
.stats #donut-chart {
|
||||
height: 100px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[3. News Item / .news-items]
|
||||
*/
|
||||
|
||||
.news-items {
|
||||
padding: 0;
|
||||
margin: 1em 0 0;
|
||||
}
|
||||
|
||||
.news-items li {
|
||||
display: table;
|
||||
padding: 0 2em 0 1.5em;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
|
||||
border-bottom: 1px dotted #CCC;
|
||||
}
|
||||
|
||||
.news-items li:last-child { padding-bottom: 0; border: none; }
|
||||
|
||||
.news-item-date {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.news-item-detail {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.news-item-title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.news-item-date {
|
||||
width: 75px;
|
||||
vertical-align: middle;
|
||||
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.news-item-day {
|
||||
display: block;
|
||||
margin-bottom: .25em;
|
||||
|
||||
font-size: 24px;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.news-item-preview {
|
||||
margin-bottom: 0;
|
||||
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.news-item-month {
|
||||
display: block;
|
||||
padding-right: 1px;
|
||||
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*------------------------------------------------------------------
|
||||
[4. Action Table / .action-table]
|
||||
*/
|
||||
|
||||
.action-table .btn-small {
|
||||
padding: 4px 5px 5px;
|
||||
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.action-table .td-actions {
|
||||
width: 80px;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.action-table .td-actions .btn {
|
||||
margin-right: .5em;
|
||||
}
|
||||
|
||||
.action-table .td-actions .btn:last-child {
|
||||
margin-rigth: 0;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 979px) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 480px) {
|
||||
|
||||
.stats .stat {
|
||||
|
||||
margin-bottom: 3em;
|
||||
}
|
||||
|
||||
.stats .stat .stat-value {
|
||||
margin-bottom: .15em;
|
||||
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.stats {
|
||||
float: left;
|
||||
|
||||
display: block;
|
||||
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#chart-stats {
|
||||
margin: 2em 0 1em;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* RESPONSIVE x subnav */
|
||||
/*------------------------------------------------------------------
|
||||
[1. Max Width: 480px]
|
||||
*/
|
||||
@media (max-width: 480px) {
|
||||
.error-container h1 {
|
||||
font-size: 72px;
|
||||
}
|
||||
.shortcuts .shortcut {
|
||||
width: 95px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-label {
|
||||
font-size: 12px;
|
||||
}
|
||||
.shortcuts .shortcut .shortcut-icon {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
/*------------------------------------------------------------------
|
||||
[3. Max Width: 979px]
|
||||
*/
|
||||
@media (max-width: 979px) {
|
||||
.navbar-fixed-top {
|
||||
position: static;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.navbar .btn-navbar {
|
||||
font-size: 18px;
|
||||
background: none;
|
||||
filter: none;
|
||||
border: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.navbar .container {
|
||||
padding: 0 10px;
|
||||
}
|
||||
.subnavbar .subnavbar .container {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
/* Extra small devices (phones, up to 480px) */
|
||||
/* No media query since this is the default in Bootstrap */
|
||||
@media (max-width: 768px) {
|
||||
.navbar {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.navbar .navbar-nav > li > .dropdown-menu::before,
|
||||
.navbar .navbar-nav > li > .dropdown-menu::after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .subnav-toggle {
|
||||
display: block;
|
||||
}
|
||||
#main {
|
||||
padding: 0 10px;
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.extra {
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.main .container {
|
||||
padding: 0;
|
||||
}
|
||||
.main .row {
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
.footer {
|
||||
margin-right: -20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
.footer #footer-terms {
|
||||
margin-top: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
.footer #footer-terms a {
|
||||
margin-left: 0;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.item-row {
|
||||
display: block;
|
||||
}
|
||||
.item-row:before,
|
||||
.item-row:after {
|
||||
content: " ";
|
||||
/* 1 */
|
||||
|
||||
display: table;
|
||||
/* 2 */
|
||||
|
||||
}
|
||||
.item-row:after {
|
||||
clear: both;
|
||||
}
|
||||
.item-row .item-label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
.item-row .item-content {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
.subnavbar {
|
||||
margin-left: -20px;
|
||||
margin-right: -20px;
|
||||
}
|
||||
.subnavbar .btn-subnavbar {
|
||||
display: block;
|
||||
}
|
||||
.subnavbar .subnavbar-inner {
|
||||
height: auto;
|
||||
}
|
||||
.subnavbar .mainnav {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1.5em;
|
||||
border: none;
|
||||
}
|
||||
.subnavbar .mainnav > li {
|
||||
float: none;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
border: none;
|
||||
}
|
||||
.subnavbar .mainnav > li > a {
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-right: .5em;
|
||||
color: #CCC;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > span {
|
||||
display: inline;
|
||||
}
|
||||
.subnavbar .mainnav > li > a > i {
|
||||
display: inline;
|
||||
margin-right: .5em;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
.subnavbar .mainnav > li > a .caret {
|
||||
margin-top: -2px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
.subnavbar .mainnav > li.active > a {
|
||||
color: #F90;
|
||||
background: transparent;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu {
|
||||
position: static;
|
||||
float: none;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu a {
|
||||
padding: 12px 40px;
|
||||
color: #FFF;
|
||||
font-weight: 600;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu a:active,
|
||||
.subnavbar .dropdown .dropdown-menu a:focus {
|
||||
background: #555 !important;
|
||||
outline: none;
|
||||
}
|
||||
.subnavbar .dropdown .dropdown-menu::before,
|
||||
.subnavbar .dropdown .dropdown-menu::after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .dropdown.open .caret {
|
||||
display: inline-block;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > a:after {
|
||||
display: none;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > .dropdown-menu {
|
||||
display: block;
|
||||
}
|
||||
.subnavbar .dropdown-submenu > .dropdown-menu > li > a {
|
||||
padding-right: 20px;
|
||||
padding-left: 60px;
|
||||
}
|
||||
}
|
||||
/* Small devices (tablets, 768px and up) */
|
||||
@media (min-width: 768px) {
|
||||
.subnav-collapse.collapse {
|
||||
display: block!important;
|
||||
height: auto!important;
|
||||
padding-bottom: 0;
|
||||
overflow: visible!important;
|
||||
}
|
||||
}
|
||||
/* Medium devices (desktops, 992px and up) */
|
||||
@media (min-width: 992px) {
|
||||
|
||||
}
|
||||
/* Large devices (large desktops, 1200px and up) */
|
||||
@media (min-width: 1200px) {
|
||||
.navbar .container,
|
||||
.subnavbar .container {
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
.page-title {
|
||||
margin-left: -15px;
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -523,7 +523,7 @@ h6 .small,
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
/*margin-top: 20px;*/
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4
-15
@@ -11,25 +11,14 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
|
||||
<%--<link href="http://jumpstartuidemo.com/themes/base/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="http://jumpstartuidemo.com/themes/base/css/bootstrap-responsive.min.css" rel="stylesheet">--%>
|
||||
|
||||
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet">
|
||||
<%--<link href="http://jumpstartuidemo.com/themes/base/css/font-awesome.min.css" rel="stylesheet"> --%>
|
||||
|
||||
<%--<link href="http://jumpstartuidemo.com/themes/base/css/ui-lightness/jquery-ui-1.10.0.custom.min.css" rel="stylesheet">--%>
|
||||
|
||||
<link href="http://jumpstartuidemo.com/themes/base/css/base-admin-3.css" rel="stylesheet">
|
||||
<link href="http://jumpstartuidemo.com/themes/base/css/base-admin-3-responsive.css" rel="stylesheet">
|
||||
|
||||
<link href="http://jumpstartuidemo.com/themes/base/css/pages/dashboard.css" rel="stylesheet">
|
||||
|
||||
<%--<link href="http://jumpstartuidemo.com/themes/base/css/custom.css" rel="stylesheet">--%>
|
||||
|
||||
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
|
||||
<%: Scripts.Render("~/bundles/modernizr") %>
|
||||
</asp:PlaceHolder>
|
||||
|
||||
<webopt:BundleReference ID="BundleReference1" runat="server" Path="~/Content/css" />
|
||||
<webopt:BundleReference ID="BundleReference2" runat="server" Path="~/Content/themes/base/css" />
|
||||
|
||||
Generated
+9
@@ -12,6 +12,15 @@ namespace C2P {
|
||||
|
||||
public partial class test {
|
||||
|
||||
/// <summary>
|
||||
/// PlaceHolder1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder PlaceHolder1;
|
||||
|
||||
/// <summary>
|
||||
/// BundleReference1 control.
|
||||
/// </summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user