27 lines
380 B
CSS
27 lines
380 B
CSS
@font-face {
|
|
font-family: "font_lop_minh";
|
|
src: url(hlgiomuc.ttf);
|
|
}
|
|
|
|
|
|
form {
|
|
width: fit-content;
|
|
border: 2px solid black;
|
|
padding: 5px;
|
|
|
|
position:fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
transition: all 2s;
|
|
|
|
}
|
|
|
|
form:hover {
|
|
transform: translate(-50%, -50%) scale(2);
|
|
}
|
|
|
|
p {
|
|
font-family: "font_lop_minh";
|
|
} |