-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (71 loc) · 1.42 KB
/
styles.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
/* 전체 페이지 스타일링 */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
color: #333;
}
/* 제목 스타일링 */
h1 {
color: #333;
text-align: center; /* 가운데 정렬 추가 */
margin-top: 20px; /* 상단 여백 추가 */
margin-bottom: 20px; /* 하단 여백 추가 */
}
/* 양식 스타일링 */
form {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: 20px auto;
}
/* 입력 필드 스타일링 */
input[type="file"] {
border: 1px solid #ddd;
padding: 8px;
margin-bottom: 10px;
width: 100%;
}
/* 선택 필드 스타일링 */
select {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 20px;
}
/* 버튼 스타일링 */
input[type="submit"] {
background-color: #5C6BC0;
color: white;
border: none;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
input[type="submit"]:hover {
background-color: #3F51B5;
}
ol {
list-style-type: none;
padding: 0;
}
li {
background: #fff;
margin-bottom: 10px;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img {
border-radius: 4px;
margin-right: 15px;
}
.item-details {
display: inline-block;
vertical-align: top;
}