-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (71 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (71 loc) · 1.07 KB
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
* {
box-sizing: border-box;
}
body {
color: #4e4e4e;
font-family: Roboto, 'Noto Sans KR', sans-serif;
font-size: 16px;
}
a {
color: #4e4e4e;
}
input {
border-radius: 6px;
border: 1px solid #e5e5e5;
font-size: 14px;
padding: 11px 15px;
}
input::placeholder {
color: #ababab;
}
button {
background-color: black;
border-radius: 6px;
border: none;
color: #ffffff;
font-size: 16px;
padding: 10px;
text-align: center;
}
#register-form {
margin: 140px auto;
width: 350px;
}
#register-title {
font-size: 30px;
text-align: center;
}
#register-form label {
display: block;
margin: 24px 0 8px;
}
#register-form input {
display: block;
margin: 8px 0;
width: 100%;
}
#register-form button {
display: block;
margin: 24px 0;
width: 100%;
}
.invalid {
color: #da382b;
}
.invalid > input {
border-color: #da382b;
color: #da382b;
}
.error-message {
display: none;
font-size: 12px;
text-align: right;
}
.invalid .error-message {
display: block;
}
.login-message {
color: #ababab;
margin: 24px 0;
text-align: center;
}