signup.module.scss 996 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
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0.5rem 0;
  color:black;
  border-radius: 3px;
24
25
26
27
  text-align: center;
}

.inputSize{
28
  width: 15.3rem;
한규민's avatar
한규민 committed
29
30
}

31
32
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
33
34
35
  -webkit-appearance: none;
}

한규민's avatar
한규민 committed
36
.butterYellowAndBtn{
37
  color: black;
한규민's avatar
한규민 committed
38
39
background-color:  #FEDC00;
border: 1px solid black;
40
41
42
43
44
}

.btnHover:hover{
background-color: black;
color: #FEDC00;
한규민's avatar
한규민 committed
45
46
transition: ease-out;
border: 1px solid white ;
47
}
한규민's avatar
한규민 committed
48
49
50
51
52
53

.btnHover:focus{
  background-color: #f5e685;
  color: black;
  border-color: none;
  box-shadow: none;
54
55
56
57
58
59
60
}
.passwordConfirmError{
  margin-bottom: 0;
  margin-top: 0.5rem;
  text-align: end;
  font-size: 13px;
  color: #FEDC00;
61
}