forked from QuantumGuinea/FE-BASE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
140 lines (118 loc) · 2.32 KB
/
index.css
File metadata and controls
140 lines (118 loc) · 2.32 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
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
139
140
/* 캐러셀 컨테이너 */
.carousel-container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
overflow: hidden;
}
/* 캐러셀 이미지 스타일 */
.carousel img {
object-fit: cover;
height: 600px;
}
.container {
max-width: 1200px;
}
.col-md-4 {
border-radius: 15px;
}
.col-md-4 :hover {
background-color: rgba(255, 255, 230, 0.459);
}
/* Features Section */
/* .features .card {
border: none;
border-radius: 15px;
box-shadow: 0 4px 8px #fbc63c;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
}
.features .card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px #fbc63c;
}
.features h5 {
color: #000000;
} */
/* content */
.features {
min-height: 600px;
}
.features {
padding-top: 20px;
padding-bottom: 20px;
}
.features .card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
height: 100%; /* 카드 높이 통일 */
display: flex;
flex-direction: column;
margin-top: 20px;
border: 0px;
}
.features .card:hover {
transform: translateY(-5px);
}
.features h5 {
color: #000000;
}
.features .card img {
width: 100%;
height: 250px; /* 원하는 이미지 높이 설정 */
object-fit: cover; /* 넘치는 이미지 비율 유지하면서 맞춤 */
}
.features .card-body {
flex: 1; /* 내용이 균등하게 배치되도록 설정 */
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
padding: 10px;
}
.features .row {
gap: 30px; /* 카드 간격을 조정 */
}
.features .col-md-4 {
padding: 0 20px; /* 좌우 간격 추가 */
}
/* Success Stories Section */
.success-stories img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 1rem;
}
.success-stories h5 {
color: #1e3a8a;
}
/* Quick Search Section */
.input-group {
border-radius: 25px;
overflow: hidden;
}
.card :hover {
background-color: rgba(255, 255, 230, 0.459);
}
@media (max-width: 768px) {
.col-md-4 {
width: 70%;
}
.features {
align-items: center;
justify-content: center;
}
}
@media (max-width: 576px) {
.carousel img {
height: 250px;
}
}
#navbarNav.collapse.navbar-collapse {
font-family: "HakgyoansimDunggeunmisoTTF-B";
}
#login-btn.btn.btn-success {
background-color: #a3520f;
border: none;
}