-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (120 loc) · 2.42 KB
/
style.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
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
/* Custom CSS for the Fitness Trainer Website */
/* Global Styles */
body {
font-family: Arial, sans-serif;
}
/* Navbar Styles */
.navbar {
background-color: #3498db !important;
}
.navbar-brand {
color: #fff !important;
font-weight: bold;
}
.nav-link {
color: #fff !important;
transition: 0.3s;
}
.nav-link:hover {
color: #f1c40f !important;
}
/* Hero Section Styles */
.hero {
background-image: url("path/to/hero-image.jpg");
background-size: cover;
background-position: center;
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.hero h1 {
font-size: 3rem;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
}
.hero .btn {
background-color: #f1c40f;
color: #fff;
padding: 10px 25px;
border-radius: 30px;
font-size: 1.2rem;
text-transform: uppercase;
}
.hero .btn:hover {
background-color: #e67e22;
}
/* About Section Styles */
.about h2 {
font-size: 2.5rem;
}
.about p {
font-size: 1.1rem;
}
/* Services Section Styles */
.services {
background-color: #f9f9f9;
}
.services h2 {
font-size: 2.5rem;
margin-bottom: 3rem;
}
.card {
border: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card-body {
text-align: center;
}
.card-title {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.card-text {
font-size: 1.1rem;
}
.card i {
display: block;
margin: 0 auto;
color: #3498db;
background: #fff;
padding: 20px;
border-radius: 50%;
}
/* Contact Section Styles */
.contact h2 {
font-size: 2.5rem;
margin-bottom: 3rem;
}
.contact form input,
.contact form textarea {
width: 100%;
padding: 10px;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1.1rem;
}
.contact form button {
background-color: #3498db;
color: #fff;
padding: 10px 25px;
border: none;
border-radius: 30px;
font-size: 1.2rem;
text-transform: uppercase;
cursor: pointer;
}
.contact form button:hover {
background-color: #2980b9;
}
/* Footer Styles */
.footer {
background-color: #2c3e50;
color: #fff;
font-size: 1.1rem;
padding: 1rem 0;
}