55 lines
898 B
SCSS
55 lines
898 B
SCSS
.color-hero {
|
|
height: 108vh;
|
|
background-color: var(--color-purple) !important;
|
|
}
|
|
|
|
.color-hero .hello {
|
|
padding-top: 30vh;
|
|
color: white;
|
|
}
|
|
|
|
.home-secondary-panel {
|
|
transform: translateY(-50px);
|
|
background-color: white;
|
|
min-height: 800;
|
|
}
|
|
|
|
.home-third-panel {
|
|
transform: translateY(-50px);
|
|
background-color: var(--color-dark-blue) !important;
|
|
min-height: 500px;
|
|
color: white;
|
|
}
|
|
|
|
.home-third-panel a {
|
|
color: var(--color-blue) !important;
|
|
}
|
|
|
|
.home-content {
|
|
padding-top: 6rem;
|
|
padding-bottom: 6rem;
|
|
}
|
|
|
|
.header-space {
|
|
padding-top: 6rem;
|
|
}
|
|
|
|
.home-project {
|
|
/* min-height: 310px; */
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.hello {
|
|
#callsign {
|
|
color: rgba(255, 255, 255, .75);
|
|
|
|
a {
|
|
color: rgba(255, 255, 255, .75);
|
|
}
|
|
|
|
a:hover {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
} |