-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.css
55 lines (47 loc) · 1.33 KB
/
schedule.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
/* 드래그 중인 요소 스타일 */
.schedule-item.dragging {
opacity: 0.5;
}
/* 드롭 가능 영역 스타일 */
.schedule-list.over {
border: 2px dashed #000;
}
.schedule-item {
border: 1px solid #ccc; /* 테두리 색상 */
border-radius: 8px; /* 모서리 둥글기 */
padding: 10px; /* 내부 여백 */
margin-bottom: 5px; /* 요소 간 간격 */
background-color: #f9f9f9; /* 배경 색상 */
}
.completed-schedule-item {
border: 1px solid #ccc; /* 테두리 색상 */
border-radius: 8px; /* 모서리 둥글기 */
padding: 10px; /* 내부 여백 */
margin-bottom: 5px; /* 요소 간 간격 */
background-color: #f9f9f9; /* 배경 색상 */
}
body {
font-family: 'Noto Sans KR', sans-serif;
background-color: #3f3e3e; /* 배경색을 검은색으로 설정 */
font-weight: 400;
font-size: 17px;
width: 300px;
height: 300px;
}
.btn-success {
background-color: #28a745; /* 초록색 */
border-color: #28a745; /* 초록색 */
}
.btn-warning {
background-color: #ffc107; /* 노란색 */
border-color: #ffc107; /* 노란색 */
}
/* 버튼 텍스트 색상 변경을 원할 경우 */
.btn-success {
color: white;
}
.btn-progress {
background-color: #6f42c1; /* 보라색 */
border-color: #6f42c1; /* 보라색 테두리 */
color: white; /* 텍스트 색상 */
}