-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhometutor.css
96 lines (84 loc) · 1.68 KB
/
hometutor.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
/* General Styling */
.Home-Tutor {
padding: 60px 20px;
background-color: #000000;
text-align: center;
}
.Home-Tutor .heading {
font-size: 5rem;
margin-bottom: 40px;
color: #ffffff;
}
.Home-Tutor p {
font-family: Arial, Helvetica, sans-serif;
font-size: 2rem;
color: #6cff28;
margin-bottom: 40px;
}
/* Teacher Cards */
.teacher-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}
.teacher-card {
background: #4a4a4a;
border-radius: 10px;
padding: 20px;
max-width: 300px;
box-shadow: 0 4px 6px rgba(255, 255, 255, 0.308);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.teacher-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 10px rgb(86, 255, 19);
}
.teacher-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
}
.teacher-card h3 {
font-size: 2.5rem;
margin-bottom: 15px;
color: #6eff13;
}
.teacher-card p {
font-size: 1.5rem;
color: #ffffff;
}
header {
display: none;
}
/* Styles for Yoga Teacher Section */
.join-now-btn {
background-color: #28a745;
color: white;
border: none;
padding: 10px 20px;
font-weight: bold;
font-size: 2rem;
border-radius: 10px;
cursor: pointer;
margin-top: 20px;
transition: 0.3s ease;
}
.join-now-btn:hover {
background-color: #006115;
color: #000000;
}
/* Modal Styles */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}