틀:플러그인/setup/css: 두 판 사이의 차이

리버티게임(개발), 모두가 만들어가는 자유로운 게임
둘러보기로 이동 검색으로 이동
백괴게임>BANIP
(css파일 분리)
 
백괴게임>BANIP
잔글편집 요약 없음
1번째 줄: 1번째 줄:
.install-button{
.install-button{
     text-align:center;
     text-align:center;
     font-weight:bold;
     font-weight:bold;
7번째 줄: 7번째 줄:
     box-shadow: 1px 1px 2 #ccc;
     box-shadow: 1px 1px 2 #ccc;
     border-radius:10px;
     border-radius:10px;
     margin:0 auto;
     margin:5px auto;
     max-width:30%;
     max-width:30%;
     transition:0.2s all ease-in
     transition:0.2s all ease-in
16번째 줄: 16번째 줄:
     background-color:#00a5ff;
     background-color:#00a5ff;
     color:white;
     color:white;
  }
.cloneable{
    display:none;
  }
  .box-article hr{
    border:2px dashed #00a5ff;
   }
   }

2017년 5월 18일 (목) 20:30 판

.install-button{

   text-align:center;
   font-weight:bold;
   color:#00a5ff;
   padding: 12px 14px;
   border: solid 2px #00a5ff;
   box-shadow: 1px 1px 2 #ccc;
   border-radius:10px;
   margin:5px auto;
   max-width:30%;
   transition:0.2s all ease-in
 }
.install-button:hover{
   box-shadow: 1px 1px 0 #999;
   cursor:pointer;
   background-color:#00a5ff;
   color:white;
 }
.cloneable{
   display:none;
 }
 .box-article hr{
   border:2px dashed #00a5ff;
 }