-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsitebootstrap.css
More file actions
53 lines (44 loc) · 817 Bytes
/
Copy pathwebsitebootstrap.css
File metadata and controls
53 lines (44 loc) · 817 Bytes
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
body {
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
}
.hero {
background: url('https://via.placeholder.com/1920x600') no-repeat center center;
background-size: cover;
color: #fff;
padding: 120px 0;
}
.hero h1 {
font-size: 4rem;
font-weight: bold;
}
.hero .btn {
padding: 12px 25px;
font-size: 18px;
background-color: #ff6f61;
border: none;
}
.hero .btn:hover {
background-color: #e25e50;
}
.card {
border: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: scale(1.05);
}
.footer {
background-color: #343a40;
color: #fff;
padding: 20px 0;
}
.footer p {
margin: 0;
}
@media (max-width: 767px) {
.hero h1 {
font-size: 2.5rem;
}
}