30 lines
443 B
CSS
30 lines
443 B
CSS
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(to right, #007BFF, #00C6FF);
|
|
color: white;
|
|
}
|
|
|
|
.card {
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.list-group-item a {
|
|
text-decoration: none;
|
|
color: #212529;
|
|
}
|
|
|
|
.list-group-item a:hover {
|
|
color: #007BFF;
|
|
}
|