source: CookCraft-FrontEnd/CookCraft-FrontEnd-master/cookcraft-app/src/css/HomeCss/footer.module.css@ d7b7f00

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

Add project

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[d7b7f00]1.footer {
2 text-align: center;
3 padding: 20px 0;
4 background-color: #f9f9f9;
5 border-top: 1px solid #ddd;
6}
7
8.container {
9 max-width: 1200px;
10 margin: 0 auto;
11 padding: 0 15px;
12}
13
14.socialLinks {
15 display: flex;
16 justify-content: center;
17 gap: 20px;
18 margin-bottom: 20px;
19}
20
21.socialContainer {
22 width: 50px;
23 height: 50px;
24 background-color: #FFA500;
25 display: flex;
26 align-items: center;
27 justify-content: center;
28 border-radius: 50%;
29 transition: background-color 0.3s ease, transform 0.3s ease;
30}
31
32.socialContainer:hover {
33 background-color: #e59400;
34 transform: scale(1.1);
35}
36
37.socialSvg {
38 width: 20px;
39 height: 20px;
40}
41
42.footer p {
43 color: #555;
44 margin-bottom: 0;
45}
46@media (max-width: 768px) {
47 footer {
48 padding: 20px 0;
49 }
50
51 .socialLinks {
52 flex-direction: block;
53 align-items: center;
54 gap: 10px;
55 }
56
57 .socialContainer {
58 width: 40px;
59 height: 40px;
60 }
61
62 .socialSvg {
63 width: 18px;
64 height: 18px;
65 }
66
67 p {
68 font-size: 14px;
69 }
70}
Note: See TracBrowser for help on using the repository browser.