test_home.css 1.12 KB
#uni
{
  position:absolute;
  width: 300px;
  height: 300px;
  top:50%;
  left:75%;
}
#dao
{
  position: absolute;
  width: 280px;
  height: 350px;
  top:45%;
  left:5%;

}
#tex1
{
  font-family: 'Nanum Gothic';
  font-size:80px;
  font-weight: bold;
}
#tex2
{
  font-family: 'Nanum Gothic';
  font-size:30px;
  font-weight: bold;
}
#btn
{
  position: relative;
  top:50%;
  width:100%;
  height:15%;
  font-family: 'Nanum Gothic';
  font-size:large;
  font-weight: bold;
  color:white;
  background-color: black;
  text-align: center;
  border-radius: 12px;

}
#index
{
  position:absolute;
  left:55%;
}

.box {
  width: 500px;
  height:500px;
  margin: 0 auto;
  display:block;
  background-color: white;
	animation: fade-in 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

@keyframes spin {
    100% {
      transform: rotate(360deg);
    }
}
.spinner 
{
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid black;
  border-color: black transparent transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}