signup.module.scss 1.29 KB
Newer Older
한규민's avatar
signup    
한규민 committed
1
2
3
4
.title{
  display: flex;
  justify-content: center;
  color: #FEDC00;
한규민's avatar
한규민 committed
5
6
  font-size: 1.7rem;
  margin-top: 2rem;
한규민's avatar
signup    
한규민 committed
7
}
한규민's avatar
한규민 committed
8
9
10
11
12
13
14
.confirm{
  color: white;
  padding-right: 8px;
  text-align: center;
  display: flex;
  align-items: center;
}
한규민's avatar
한규민 committed
15
16
17
18
19
20
21
22
23
24
.contents{
  display: flex;
  width: 100%;
  justify-content: spa;
  align-items: center;
  padding-top: 5px;
}
.signupLabel{
  color: white;
  padding-right: 8px;
한규민's avatar
signup    
한규민 committed
25
  text-align: left;
한규민's avatar
한규민 committed
26
27
28
29
30
31
32
33
}

.inputContent{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
한규민's avatar
한규민 committed
34
.input {
한규민's avatar
한규민 committed
35
36
37
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0.5rem 0;
  border-radius: 3px;
38
39
  text-align: center;
}
한규민's avatar
한규민 committed
40
41
42
.input2 {
  width: 9.01rem;
}
한규민's avatar
signup    
한규민 committed
43
44
45
46
47
48
49
50
51
input[type=password]{
font-family: 'Courier New', Courier, monospace;
}


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

52
.inputSize{
53
  width: 15.3rem;
한규민's avatar
한규민 committed
54
55
}

56
57
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
58
59
60
  -webkit-appearance: none;
}

한규민's avatar
한규민 committed
61
.butterYellowAndBtn{
62
  color: black;
한규민's avatar
한규민 committed
63
64
background-color:  #FEDC00;
border: 1px solid black;
한규민's avatar
signup    
한규민 committed
65
text-align: center;
66
67
68
69
70
}

.btnHover:hover{
background-color: black;
color: #FEDC00;
한규민's avatar
한규민 committed
71
72
transition: ease-out;
border: 1px solid white ;
한규민's avatar
signup    
한규민 committed
73
text-align: center;
74
}
한규민's avatar
한규민 committed
75

76
77
78
79
80
81
.passwordConfirmError{
  margin-bottom: 0;
  margin-top: 0.5rem;
  text-align: end;
  font-size: 13px;
  color: #FEDC00;
82
}