48 lines
708 B
Plaintext
48 lines
708 B
Plaintext
body {
|
|
margin: 0;
|
|
background-color: rgba(246, 246, 246, 1);
|
|
}
|
|
.admission-officer {
|
|
min-height: 100vh;
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.flexflex {
|
|
display: flex;
|
|
}
|
|
|
|
.flexcenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flexacenter {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex1 {
|
|
flex: 1;
|
|
}
|
|
|
|
img {
|
|
object-fit: cover;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.aaaa {
|
|
width: 10rem;
|
|
height: 6.25rem;
|
|
}
|
|
}
|