87 lines
1.4 KiB
CSS
87 lines
1.4 KiB
CSS
*{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: "Roboto", cursive;
|
|
font-size: 18px;
|
|
}
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
|
|
|
.btn-foo {
|
|
background: #BB8800;
|
|
color: white;
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
border: none;
|
|
font-size: 18px;
|
|
margin: 30px;
|
|
box-sizing: border-box;
|
|
transition: all 500ms ease;
|
|
}
|
|
.btn-foo:hover{
|
|
background: rgba(163,120,0,0.9);
|
|
box-shadow: inset 0 0 0 3px #916500;
|
|
}
|
|
#b1{
|
|
height: 33px;
|
|
}
|
|
|
|
#b3{
|
|
height: 33px;
|
|
}
|
|
#b4{
|
|
height: 33px;
|
|
}
|
|
|
|
|
|
|
|
/*NAVBAR*/
|
|
|
|
.nav-link-white {
|
|
color: #fff;
|
|
transition: all 500ms ease;
|
|
}
|
|
.nav-link-white:hover{
|
|
text-decoration: none;
|
|
color: rgba(0,0,0,.5);
|
|
}
|
|
|
|
.bg-gold{
|
|
background-color: #bb8800;
|
|
}
|
|
|
|
.it{
|
|
color: #fff;
|
|
transition: all 500ms ease;
|
|
}
|
|
.it:hover{
|
|
color: #bb8800;
|
|
}
|
|
.navbar-blanco{
|
|
color: #fff;
|
|
}
|
|
.item-show{
|
|
color: #fff;
|
|
}
|
|
.item-show:hover{
|
|
background-color: rgba(0,0,0,.2);
|
|
color: #fff;
|
|
}
|
|
.custom-toggler.navbar-toggler:focus {
|
|
outline-color: rgba(0,0,0,0.1);
|
|
}
|
|
.custom-toggler .navbar-toggler-icon {
|
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(250,250,250)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
|
|
}
|
|
|
|
|
|
|
|
/*CARRUSEL*/
|
|
.carousel-inner img {
|
|
width: 100%;
|
|
height: 90%;
|
|
}
|
|
|
|
|
|
|
|
|