23 lines
361 B
CSS
23 lines
361 B
CSS
.allContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
}
|
|
.blackBorderRect {
|
|
background-color: #FFFFFF;
|
|
border: 10px #000000 solid;
|
|
border-radius: 32px;
|
|
color: #000000;
|
|
}
|
|
a {
|
|
cursor: pointer;
|
|
color: #0000EE;
|
|
text-decoration: underline;
|
|
font-weight: normal;
|
|
}
|
|
a:visited {
|
|
color: #551A8B;
|
|
}
|
|
.mainDiv {
|
|
text-align: center;
|
|
} |