MVCLogin/VCart/Views/Shared/_Layout.cshtml.css
Ricardo Carneiro b21056f636 first commit
2024-08-10 22:10:03 -03:00

193 lines
3.5 KiB
CSS

/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
a.navbar-brand {
white-space: normal;
text-align: center;
word-break: break-all;
}
a {
color: #0077cc;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.border-top {
border-top: 1px solid #e5e5e5;
}
.border-bottom {
border-bottom: 1px solid #e5e5e5;
}
.box-shadow {
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
button.accept-policy {
font-size: 1rem;
line-height: inherit;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
#search {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
-webkit-transform: translate(0px, -100%) scale(0, 0);
-moz-transform: translate(0px, -100%) scale(0, 0);
-o-transform: translate(0px, -100%) scale(0, 0);
-ms-transform: translate(0px, -100%) scale(0, 0);
transform: translate(0px, -100%) scale(0, 0);
opacity: 0;
}
#search.open {
-webkit-transform: translate(0px, 0px) scale(1, 1);
-moz-transform: translate(0px, 0px) scale(1, 1);
-o-transform: translate(0px, 0px) scale(1, 1);
-ms-transform: translate(0px, 0px) scale(1, 1);
transform: translate(0px, 0px) scale(1, 1);
opacity: 1;
}
#search input[type="search"] {
position: absolute;
top: 50%;
width: 100%;
color: rgb(255, 255, 255);
background: rgba(0, 0, 0, 0);
font-size: 60px;
font-weight: 300;
text-align: center;
border: 0px;
margin: 0px auto;
margin-top: -51px;
padding-left: 30px;
padding-right: 30px;
outline: none;
}
#search .btn {
position: absolute;
top: 50%;
left: 50%;
margin-top: 61px;
margin-left: -45px;
}
#search .close {
position: fixed;
top: 15px;
right: 15px;
color: #fff;
background-color: #00ff21;
border-color: #357ebd;
opacity: 1;
padding: 3px 16px;
font-size: 27px;
border-radius: 25px;
}
.btn-primary {
background-color: #00ff21;
}
.navbar-inner {
/*height: 90px*/
min-height: 60px
}
.navbar .brand {
padding: 0 10px;
}
.navbar .nav > li > a {
padding: 20px 15px;
/*padding: 35px 15px;*/
}
.navbar .btn-navbar {
/*margin-right: 0px;*/
margin-top: 15px;
}
.brand img {
margin-top: 5px
}
@media (max-width:768px) {
.brand img {
margin-bottom: 5px
}
.navbar .btn-navbar {
/*margin-right: -15px;*/
}
.navbar .nav > li > a {
padding: 10px 15px;
}
}
.navbar .navbar-collapse ul.navbar-nav .nav-item.active {
color: white;
background-color: #00ff21 !important;
}
a.nav-link.text-white {
background-color: green;
}
nav.link .active {
background-color: red;
color: darkgreen;
}
#nav-bar {
background-color: darkgreen;
}
#searchLi > a {
background-color: darkred;
color: white;
}
.text-red {
color: darkred;
}
.btn.green {
background-color: darkgreen;
color: white;
}
btn.primary {
background: darkgreen;
}