signup.module.scss 905 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
28
29
30
31
  
}
.input.placeholder{
  text-align: center;
}

.inputSize{
  width: 15rem;
한규민's avatar
한규민 committed
32
33
}

34
35
36
37
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
한규민's avatar
한규민 committed
38
.butterYellowAndBtn{
39
  color: black;
한규민's avatar
한규민 committed
40
41
background-color:  #FEDC00;
border: 1px solid black;
42
43
44
45
46
}

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

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