153 lines
2.9 KiB
SCSS
153 lines
2.9 KiB
SCSS
$dark-blue: #002554;
|
|
$medium-blue: #004990;
|
|
$light-blue: #007cbe;
|
|
$hover-blue: #25b3ff;
|
|
$black: #000;
|
|
$gray: #bdbdbd;
|
|
$white: #fff;
|
|
|
|
.browse {
|
|
background: linear-gradient(
|
|
180deg,
|
|
rgb(0 37 84 / 100%) 0%,
|
|
rgb(0 124 190 / 100%) 50%,
|
|
rgb(255, 255, 255) 100%
|
|
);
|
|
background-color: transparent;
|
|
overflow-y: visible;
|
|
width: calc(100% - 300px);
|
|
height: auto;
|
|
display: block;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.browse-image {
|
|
width: 100%;
|
|
height: 200px;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.browse-image img {
|
|
width: auto;
|
|
height: 200px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.browse-fieldContainer {
|
|
width: 100%;
|
|
min-height: calc(100% - 200px);
|
|
height: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background-color: transparent;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.browse-title {
|
|
width: 80%;
|
|
height: auto;
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
color: $white;
|
|
font-family: "Gotham Medium";
|
|
margin: 10px;
|
|
background-color: transparent;
|
|
margin-bottom: 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.browse-cable {
|
|
width: 80%;
|
|
height: 150px;
|
|
background: linear-gradient(
|
|
-30deg,
|
|
rgb(187, 208, 236) 0%,
|
|
rgba(255, 255, 255, 1) 100%
|
|
);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
flex-direction: row;
|
|
border-radius: 20px;
|
|
border: 1px solid $gray;
|
|
margin-bottom: 5px;
|
|
margin-top: 5px;
|
|
transition: all 0.3s ease-in-out;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
background-color: transparent;
|
|
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
}
|
|
|
|
.browse-cable:hover {
|
|
transform: translate3d(-5px, -5px, 0);
|
|
}
|
|
|
|
.browse-cable-image {
|
|
width: auto;
|
|
height: 75%;
|
|
margin-right: 25px;
|
|
margin-left: 20px;
|
|
background-color: transparent;
|
|
border: $gray solid 1px;
|
|
border-radius: 10px;
|
|
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
}
|
|
|
|
.browse-cable-label {
|
|
width: 90%;
|
|
height: auto;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.browse-cable-arrow {
|
|
width: auto;
|
|
height: auto;
|
|
font-size: 35px;
|
|
margin-right: 20px;
|
|
transform: scaleY(2);
|
|
font-family: "Gotham Book";
|
|
color: $medium-blue;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.browse-cable-name {
|
|
background-color: transparent;
|
|
font-size: 20px;
|
|
color: $medium-blue;
|
|
width: auto;
|
|
height: auto;
|
|
font-family: "Gotham Bold";
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.browse-cable-description {
|
|
background-color: transparent;
|
|
font-size: 18px;
|
|
color: $medium-blue;
|
|
width: auto;
|
|
height: auto;
|
|
font-family: "Gotham Medium";
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.browse-cable-brand,
|
|
.browse-cable-short,
|
|
.browse-cable-position,
|
|
.browse-cable-category {
|
|
background-color: transparent;
|
|
font-size: 15px;
|
|
margin-bottom: 2px;
|
|
color: $light-blue;
|
|
color: $light-blue;
|
|
width: auto;
|
|
height: auto;
|
|
font-family: "Gotham Medium";
|
|
} |