App.css 1.6 KB
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic');


*{
  margin:0 auto;
  text-align: center;
  padding: 0;
}

.active-cyan-4 input[type=text]:focus:not([readonly]) {
  border: 1px solid #1ABC9C;
  box-shadow: 0 0 0 1px #1ABC9C;
  width: 60%;
  margin: auto;
}
.active-cyan-4 input[type=text] {
  width: 60%;
  margin: auto;
}

body{ 
  font: 22px 'Nanum Gothic', sans-serif;
}

a{
  text-decoration: none;
  color: #404040;
}

li{
  list-style: none;
}
#menu{ /*백그라운드 컬러만 지정*/
  padding-top: 5px;
  padding-bottom: 5px;
  font: 20px 'Nanum Gothic', sans-serif;
  background: #1ABC9C;

}

#menu ul{
  width:100%;
  height:70%;
  margin: 0 auto;
  overflow: hidden;
}
#menu ul li{
  float: left;
  width: 25%;
  line-height: 50px;
  text-align: center;
  background: #1ABC9C;
  
}

#menu ul li a{
  display:block;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: "none";
}

#menu ul li a:hover{
  text-decoration: "none";
  background: rgb(21, 150, 124);
  font-weight: bold;
  color: #fff;
}



.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}
.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}
.App-link {
  color: #61dafb;
}
@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}