signup.module.scss 1.15 KB
Newer Older
한규민's avatar
signup    
한규민 committed
1
2
3
4
5
6
7
8
.title{
  display: flex;
  justify-content: center;
  color: #FEDC00;
  font-size: 25px;
  margin-top: 20px;
}

한규민's avatar
한규민 committed
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;
한규민's avatar
signup    
한규민 committed
19
  text-align: left;
한규민's avatar
한규민 committed
20
21
22
23
24
25
26
27
}

.inputContent{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
한규민's avatar
한규민 committed
28
.input {
한규민's avatar
한규민 committed
29
30
31
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0.5rem 0;
  border-radius: 3px;
32
33
34
  text-align: center;
}

한규민's avatar
signup    
한규민 committed
35
36
37
38
39
40
41
42
43
input[type=password]{
font-family: 'Courier New', Courier, monospace;
}


input::placeholder{
  font-family: 'HangeulNuriB'
}

44
.inputSize{
45
  width: 15.3rem;
한규민's avatar
한규민 committed
46
47
}

48
49
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
50
51
52
  -webkit-appearance: none;
}

한규민's avatar
한규민 committed
53
.butterYellowAndBtn{
54
  color: black;
한규민's avatar
한규민 committed
55
56
background-color:  #FEDC00;
border: 1px solid black;
한규민's avatar
signup    
한규민 committed
57
text-align: center;
58
59
60
61
62
}

.btnHover:hover{
background-color: black;
color: #FEDC00;
한규민's avatar
한규민 committed
63
64
transition: ease-out;
border: 1px solid white ;
한규민's avatar
signup    
한규민 committed
65
text-align: center;
66
}
한규민's avatar
한규민 committed
67

68
69
70
71
72
73
.passwordConfirmError{
  margin-bottom: 0;
  margin-top: 0.5rem;
  text-align: end;
  font-size: 13px;
  color: #FEDC00;
74
}