-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypage2.css
More file actions
87 lines (75 loc) · 1.28 KB
/
mypage2.css
File metadata and controls
87 lines (75 loc) · 1.28 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
87
/* mypage2.css - 정보 수정 페이지 */
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
margin: 0;
padding: 0;
}
.container {
max-width: 700px;
margin: 60px auto;
padding: 40px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.title {
font-size: 36px;
font-weight: 700;
text-align: center;
margin-bottom: 40px;
color: #333;
}
.form-group {
margin-bottom: 24px;
}
label {
display: block;
margin-bottom: 8px;
font-size: 16px;
font-weight: 600;
color: #444;
}
input[type="text"],
input[type="password"],
select {
width: 100%;
padding: 12px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 8px;
transition: border-color 0.2s;
box-sizing: border-box;
}
input:focus,
select:focus {
border-color: #47729a;
outline: none;
}
button {
width: 100%;
padding: 14px;
font-size: 18px;
font-weight: 600;
background-color: #47729a;
color: #ffffff;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 30px;
}
button:hover {
background-color: #365676;
}
@media screen and (max-width: 600px) {
.container {
padding: 20px;
}
.title {
font-size: 28px;
}
button {
font-size: 16px;
}
}