signup.module.scss 725 Bytes
Newer Older
한규민's avatar
한규민 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.contents{
  display: flex;
  width: 100%;
  justify-content: spa;
  align-items: center;
  padding-top: 5px;
}
.signupLabel{
  color: white;
  padding-right: 8px;
}

.inputContent{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
한규민's avatar
한규민 committed
19
.input {
한규민's avatar
한규민 committed
20
21
22
23
24
25
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0.5rem 0;
  color:black;
  border-radius: 3px;
  #userPassword{
    padding: 0.7rem 0 0.7rem 0;
26
  }
한규민's avatar
한규민 committed
27
28
29
30
31
}

.butterYellowAndBtn{
background-color:  #FEDC00;
border: 1px solid black;
32
33
34
35
36
}

.btnHover:hover{
background-color: black;
color: #FEDC00;
한규민's avatar
한규민 committed
37
38
transition: ease-out;
border: 1px solid white ;
39
}
한규민's avatar
한규민 committed
40
41
42
43
44
45

.btnHover:focus{
  background-color: #f5e685;
  color: black;
  border-color: none;
  box-shadow: none;
46
}