my-info.module.scss 2.54 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.title {
  display: flex;
  justify-content: center;
  color: #FEDC00;
  font-size: 2.5rem;
  margin: 2rem 0;
}

.confirm {
  color: black;
  padding-right: 8px;
  text-align: center;
  display: flex;
  align-items: center;
}

.input2 {
  width: 9.01rem;
}

.userName {
  color: white;
  font-size: 1.5rem;
}

.contents {
  display: flex;
  width: 100%;
  justify-content: spa;
  align-items: center;
  padding-top: 5px;
}

.signupLabel {
  color: black;
  padding-right: 8px;
  text-align: left;
}

.input_file_button {
  padding: 6px 25px;
  background-color: #FF6600;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}

.inputContent {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem 0;
}

.box {
  width: 12rem;
  margin: 0px 3rem;
  position: relative;
  display: flex;
  align-items: center;

  &:hover {
    display: block;
  }
}

.hoverTxt {
  display: none;
  position: absolute;
  top: 4rem;
  left: 1.6rem;
  color: #FEDC00;
  font-size: 1.5rem;
}

.box:hover .hoverTxt {
  display: block;
}

.profile {
  width: 10rem;
  height: 10rem;

  &:hover {
    opacity: 0.5;
  }
}

.input {
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 0 0.5rem 0;
  border-radius: 3px;
  text-align: center;
}
  
input[type=password] {
  font-family: 'Courier New', Courier, monospace;
}
  
input::placeholder {
  font-family: 'HangeulNuriB'
}
  
.inputSize {
  width: 15.3rem;
}
  
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
  
.butterYellowAndBtn {
  color: black;
  font-size: 1rem;
  background-color: #FEDC00;
  border: 1px solid black;
  text-align: center;
}
  
.btnHover:hover {
  background-color: black;
  color: #FEDC00;
  transition: ease-out;
  border: 1px solid #FEDC00;
  text-align: center;
}
  
.passwordConfirmError {
  margin-bottom: 0;
  margin-top: 0.5rem;
  margin-right: 3rem;
  text-align: end;
  font-size: 13px;
  font-weight: bold;
  color: black;
}
  
@media (max-width: 576px) {
  .title {
한규민's avatar
한규민 committed
149
150
151
    display: flex;
    justify-content: center;
    color: #FEDC00;
Kim, Subin's avatar
Kim, Subin committed
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
    font-size: 2rem;
    margin: 2rem 0;
  }

  .box {
    width: 8rem;
    margin: 0px 1rem;
    position: relative;
  }

  .profile {
    width: 8rem;
    height: 8rem;
  }
  
  .userName {
    color: white;
    font-size: 1.1rem;
  }

  .hoverTxt {
    display: none;
    position: absolute;
    top: 3.2rem;
    left: 1.7rem;
    color : #FEDC00;
    font-size: 1rem;
  }
한규민's avatar
한규민 committed
180
}