login.module.scss 753 Bytes
Newer Older
한규민's avatar
한규민 committed
1
2
3
4
5
6
7
8
.title{
  display: flex;
  justify-content: center;
  color: #FEDC00;
  font-size: 1.7rem;
  margin: 2rem 0;
}

한규민's avatar
한규민 committed
9
.intoSignupPage{
10
  font-size: 13px;
한규민's avatar
한규민 committed
11
  text-decoration: none;
한규민's avatar
한규민 committed
12
13
  color: white;
}
한규민's avatar
한규민 committed
14
.intoSignupPage:hover {
한규민's avatar
login    
한규민 committed
15
    text-decoration: none;
16
    color:  #FEDC00;
한규민's avatar
한규민 committed
17
}
한규민's avatar
한규민 committed
18
19
.input {
  margin: 0.5rem 0 0 0;
한규민's avatar
한규민 committed
20
  padding: 0.5rem 0 0.5rem 0;
21
  color:black;
한규민's avatar
한규민 committed
22
  border-radius: 3px;
한규민's avatar
한규민 committed
23
24
}

한규민's avatar
한규민 committed
25
26
27
28
29
30
31
32
input[type=password]{
  font-family: 'Courier New', Courier, monospace;
}

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

한규민's avatar
한규민 committed
33
.fontSize{
한규민's avatar
한규민 committed
34
35
36
37
  font-size: 16px;
}

.fontSizeTwo{
38
39
40
  font-size: 11px;
}

한규민's avatar
한규민 committed
41
.butterYellowAndBtn{
42
  background-color:  #FEDC00;
한규민's avatar
한규민 committed
43
  border: 1px solid black;
44
45
46
47
48
}

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