15 lines
347 B
CSS
15 lines
347 B
CSS
![]() |
.container .content {
|
|||
|
position: absolute;
|
|||
|
bottom: 0;
|
|||
|
background: rgb(0, 0, 0); /* Fallback color */
|
|||
|
background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
|
|||
|
color: #f1f1f1;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
padding: 20px;
|
|||
|
}
|
|||
|
.container {
|
|||
|
position: relative;
|
|||
|
max-width: 800px;
|
|||
|
margin: 0 auto;
|
|||
|
}
|