Skip to content
Snippets Groups Projects
Select Git revision
  • f6f8fac1664511f80499d2ee3db3a3237a8ec2d5
  • main default protected
  • gaeon
3 results

createVote.module.css

Blame
  • createVote.module.css 599 B
    .createVote{
        width: 90px;
        height:35px;
        border:none;
        border-radius: 5px;
        cursor: pointer;
    
        color: white;
        background-color:#8393BE;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }
    
    .endCreateVote{
        width: 90px;
        height:35px;
        border:none;
        border-radius: 5px;
        cursor: pointer;
    
        color: white;
        background-color:#b5b9c5;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }