-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-page.css
106 lines (87 loc) · 1.64 KB
/
about-page.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
body {
font-family: Arial, sans-serif;
color: #343a40;
margin: 0;
background-color: #f8f9fa;
}
.mainbg-about{
padding: 20px;
}
.navbar{
color: black;
}
.bgcontainer1-about-page {
max-width: 1200px;
margin: auto;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-aboutpage {
font-size: 50px;
text-align: center;
margin-bottom: 20px;
font-family: playfair display;
}
.paragraph-aboutpage {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 20px;
text-align: center;
}
.footer-aboutpage {
margin-top: 40px;
}
.d-flex {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.card1-aboutpage {
text-align: center;
background-color: #f1f1f1;
border-radius: 8px;
padding: 15px;
margin: 10px;
width: 250px;
transition: transform 0.3s;
}
.card2-aboutpage {
background-color: #f1f1f1;
border-radius: 8px;
padding: 15px;
margin: 10px;
width: 250px;
text-align: center;
transition: transform 0.3s;
}
.card1-aboutpage:hover,
.card2-aboutpage:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.img1-aboutpage {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
}
.name-aboutpage {
font-size: 1.5rem;
font-weight: bold;
margin: 10px 0;
color: #1e3a6e;
}
.text-center {
font-size: 1rem;
color: #6c757d;
}
.img2-aboutpage {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 10px;
margin-left: 60px;
}