-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp2.css
138 lines (129 loc) · 2.56 KB
/
signUp2.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container{
width: 100%;
height: 100vh;
background-image: linear-gradient(to left top,#121920, #536976);
}
/*로그인 부분*/
.form-control{
padding: 50px 30px 20px;
width: 90%;
max-width: 457px;
height: 600px;
position: absolute;
top:50%;
left: 25%;
transform: translate(-50%,-50%);
border-radius: 4px;
background: #1F252C;
box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.inside-control{
position: relative;
bottom: 5%;
}
::placeholder{
font-size: 14px;
}
.name-title,.passwrd-title,.email-title,.nick-title{
position: relative;
top: 12px;
font-weight: bold;
font-size: 26px;
color: #DFDFDF;
}
.input-group{
width: 100%;
display: flex;
align-items: center;
margin: 10px 0;
position: relative;
}
.input-group input, .input-group textarea{
flex-basis: 100%;
background: transparent;
border: 0;
outline: 0;
padding: 10px 0;
border-bottom: 1px solid #999;
color: #DFDFDF;
font-size: 16px;
}
.input-group span{
position: absolute;
bottom: 12px;
right: 17px;
font-size: 14px;
color: red;
}
.input-group input:focus{
border-bottom-color: #BE54FF;
}
#name-text{
font-size:10px;
margin:0;
position: relative;
bottom: 10px;
color: #DFDFDF;
}
#name-error, #passwrd-error, #email-error, #nick-error{
position: relative;
top:3px;
right: 5;
}
form button{
background: #9747FF;
color: #fff;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.7);
padding: 10px 40px;
outline: 0;
cursor: pointer;
display: block;
margin: 30px auto 10px;
border-radius: 25px;
}
.log-link{
text-decoration: none;
color: #fff;
font-size: 15px;
}
/*오른쪽 사이드부분 */
.side{
width: 40%;
position: absolute;
font-family: Noto Sans KR;
top: 45%;
left: 55%;
color: #ABABAB;
}
.ikjun-title{
font-size: 50px;
}
.sub-title{
font-size: 27px;
}
/*화면이 줄어들면 바뀌는 부분*/
@media (max-width:850px) {
.side{
display: none;
}
.form-control{
padding: 50px 30px 20px;
width: 90%;
max-width: 457px;
height: 600px;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
border-radius: 4px;
background: #1F252C;
box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
}