47 lines
949 B
CSS
47 lines
949 B
CSS
.container {
|
|
margin: 50px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 500px;
|
|
color: white;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 40px;
|
|
border: 1px solid white;
|
|
border-radius: 2px;
|
|
transform: scaleX(1.02);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
padding-left: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.title > h1 {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-top: 10px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
border-left: 1px solid black;
|
|
border-right: 1px solid black;
|
|
border-bottom: 1px solid black;
|
|
}
|