-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjoin.css
129 lines (111 loc) · 1.98 KB
/
join.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
* {
padding: 0;
margin: 0;
}
body {
background-color: rgb(225, 225, 225);
}
.logo img {
width: 300px;
background-color: transparent;
}
.header {
padding: 10px;
display: flex;
justify-content: space-between;
background-color: white;
}
.header > div {
background-color: white;
}
.head_a {
background-color: transparent;
}
button:hover {
background-color: rgb(178, 185, 180);
cursor: pointer;
}
.logo img {
width: 300px;
background-color: transparent;
}
/*회원가입폼디자인*/
section.join_form {
background-color: white;
width: 400px;
height: 500px;
border-radius: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 30px;
display: flex;
flex-direction: column;
gap: 10px;
}
section.join_form h1 {
font-size: 35px;
text-align: center;
padding-top: 20px;
padding-bottom: 0px;
}
.id_pw {
width: 380px;
position: relative;
padding: 5px;
left: 3px;
margin-top: 10px;
}
.id_pw input {
width: 100%;
height: 50px;
font-size: 25px;
outline: none;
}
.id_pw label {
position: absolute;
left: 10px;
top: 22.5px;
font-size: 15px;
color: darkgrey;
transition: 0.3s;
}
.id_pw input:focus + label {
/*인풋에 포커스 되면 레이블이 어떻게 반응을 하는지에 대해서*/
font-size: 10px;
}
.id_pw input:valid + label {
color: transparent;
}
.btn_area {
width: 380px;
padding-left: 1.5px;
}
.join_btn {
width: 100%;
height: 50px;
margin-left: 7px; /*로그인 폼이랑 크기는 같고 왼쪽 마진을 0으로 줘도 왜 안 맞는지 모르겠음->패딩이 있어서*/
background-color: rgb(63, 147, 74);
color: white;
font-size: 20px;
border: 0;
padding: 5px;
margin-top: 5px;
}
.join_info {
width: 380px;
margin-left: 7px;
border: 0;
padding: 5px;
margin-bottom: 10px;
}
#checkbtn {
border: 1px solid rgb(79, 79, 79);
border-radius: 2px;
width: 80px;
height: 30px;
margin-top: 5px;
font-size: 15px;
font-weight: 370;
}