scss practice
ν΄μ ν μ΄λΈ(ν΄μ μΆ©λ) ꡬν (λ°λ‘ μ 리)
.article {
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.1) 5%,
transparent,
transparent,
transparent,
transparent
)
$color-red;
}
top to bottom λ°©ν₯μΌλ‘ κ²μ μμ ν¬λͺ
μΌλ‘ μμ΄ μμν λ³νλ€. λ°°κ²½μμ redμ΄λ€.
transparentλ₯Ό μ¬λ¬ κ° μ°λ©΄ κ²μ λΆλΆμ μμμ΄ κ·Έλ§νΌ μ€μ΄λ λ€.
β» μ΄μ μ ꡬννλ λμμ νλ μ΄μ΄ μ½λ μμ (μ νλΈμ²λΌ )
html,
body {
height: 100%;
}
// λ©μΈ ν€λ CSS
.header__main {
position: fixed;
top: 0;
left: 0;
width: 40%;
height: 100vh;
padding: 10% 5%;
background-color: $color-light-grey;
overflow-y: auto;
}
// μΉμ
CSS
.articles {
height: 100%;
margin-top: 100px;
margin-left: 50%;
background-color: $color-red;
.articles-header__fixed {
// μΉμ
ν€λ λ°°μΉ
position: fixed;
top: 0;
left: 50%;
right: 0;
height: 100px;
// μΉμ
ν€λ μ€νμΌ λ° μμ
border-bottom: 1px solid $color-grey;
background-color: inherit;
// ν°νΈ μ€νμΌ λ° μ λ ¬
color: $color-white;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
}
ν΄μ ν μ΄λΈ λ€μ ꡬνν΄λ³΄κΈ°
μ½λ 리뷰 μ 리