22 lines
338 B
CSS
22 lines
338 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: #1010da;
|
|
text-decoration: underline;
|
|
}
|
|
a:visited {
|
|
color: #551A8B;
|
|
}
|
|
.mainDiv {
|
|
text-align: center;
|
|
} |