signup.module.scss 668 Bytes
Newer Older
한규민's avatar
한규민 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
input {
  margin: 5px 0;
  padding: 5px 5px;
  color:white;
}

label{
  color: white;
}
.btn{
  background-color: black;
  color: #FEDC00;
}
.signup{
  flex-direction: column;
}
ul{
  padding: 0 10px;
}

.inputContents {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0 10px;
    color: white;
}

.nav-link, .nav-link.active{
  background-color: black;
}
  
.loginBtn {
    color : black;
    background-color:  #FEDC00;
    border: none;
    font-size: 15px;
    font-weight: bold;
}
  
.intoSignupPage {
    text-decoration: none;
    color: white;
}

.intoSignupPage:hover {
    text-decoration: none;
    color:  #FEDC00; 
}