source: CookCraft-FrontEnd/CookCraft-FrontEnd-master/cookcraft-app/src/css/AboutPageCss/about-body-style.module.css@ f08e256

Last change on this file since f08e256 was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago

Add project

  • Property mode set to 100644
File size: 1.3 KB
Line 
1.aboutSection {
2 background: linear-gradient(to right, #ffffff, #f5f5f5);
3 padding: 60px 20px;
4}
5
6.container {
7 max-width: 1200px;
8 margin: 0 auto;
9}
10
11h1 {
12 text-align: center;
13 color: #333;
14}
15
16.introText {
17 text-align: center;
18 color: #555;
19 font-size: 1.2em;
20 line-height: 1.6;
21 max-width: 800px;
22 margin: 20px auto;
23}
24
25.aboutDetails {
26 display: flex;
27 justify-content: space-around;
28 flex-wrap: wrap;
29 margin-top: 50px;
30}
31
32.aboutItem {
33 max-width: 350px;
34 margin: 20px;
35 text-align: center;
36}
37
38.aboutItem img {
39 width: 100%;
40 height: auto;
41 /*height: 200px;*/
42 /*object-fit: cover; */
43 border-radius: 8px;
44}
45
46h3 {
47 color: #333;
48 margin-top: 20px;
49}
50
51.aboutItem p {
52 color: #555;
53 line-height: 1.6;
54}
55
56.teamSection {
57 text-align: center;
58 margin-top: 50px;
59}
60
61.teamSection h2 {
62 color: #333;
63}
64
65.teamIntro {
66 color: #555;
67 max-width: 800px;
68 margin: 20px auto;
69}
70
71.teamMembers {
72 display: flex;
73 justify-content: space-around;
74 flex-wrap: wrap;
75 margin-top: 30px;
76}
77
78.teamMember {
79 max-width: 250px;
80 margin: 20px;
81 text-align: center;
82}
83
84.teamMember img {
85 width: 100%;
86 height: 250px;
87 object-fit: cover;
88 border-radius: 50%;
89}
90
91h4 {
92 color: #333;
93 margin-top: 10px;
94}
95
96.teamMember p {
97 color: #777;
98}
Note: See TracBrowser for help on using the repository browser.