source: imaps-frontend/src/pages/IMaps/components/Footer.css@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[d565449]1.footer-container {
2 background-color: #242424;
3 padding: 4rem 0 2rem 0;
4 display: flex;
5 flex-direction: column;
6 justify-content: center;
7 align-items: center;
8}
9
10.footer-subscription {
11 display: flex;
12 flex-direction: column;
13 justify-content: center;
14 align-items: center;
15 text-align: center;
16
17 margin-bottom: 24px;
18 padding: 24px;
19 color: #fff;
20}
21
22.footer-subscription > p {
23 font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
24}
25
26.footer-subscription-heading {
27 margin-bottom: 24px;
28 font-size: 24px;
29}
30
31.footer-subscription-text {
32 margin-bottom: 24px;
33 font-size: 20px;
34}
35
36.footer-input {
37 padding: 8px 20px;
38 border-radius: 2px;
39 margin-right: 10px;
40 outline: none;
41 border: none;
42 font-size: 18px;
43 margin-bottom: 16px;
44 border: 1px solid #fff;
45}
46
47.footer-links {
48 width: 100%;
49 max-width: 1000px;
50 display: flex;
51 justify-content: center;
52}
53
54.footer-link-wrapper {
55 display: flex;
56}
57
58.footer-link-items {
59 display: flex;
60 flex-direction: column;
61 align-items: flex-start;
62 margin: 16px;
63 text-align: left;
64 width: 160px;
65 box-sizing: border-box;
66}
67
68.footer-link-items h2 {
69 margin-bottom: 16px;
70}
71
72.footer-link-items > h2 {
73 color: #fff;
74}
75
76.footer-link-items a {
77 color: #fff;
78 text-decoration: none;
79 margin-bottom: 0.5rem;
80}
81
82.footer-link-items a:hover {
83 color: #e9e9e9;
84 transition: 0.3s ease-out;
85}
86
87.footer-email-form h2 {
88 margin-bottom: 2rem;
89}
90
91.footer-input::placeholder {
92 color: #b1b1b1;
93}
94
95/* Social Icons */
96.social-icon-link {
97 color: #fff;
98 font-size: 24px;
99}
100
101.social-media {
102 max-width: 1000px;
103 width: 100%;
104}
105
106.social-media-wrap {
107 display: flex;
108 justify-content: space-between;
109 align-items: center;
110 width: 90%;
111 max-width: 1000px;
112 margin: 40px auto 0 auto;
113}
114
115.social-icons {
116 display: flex;
117 justify-content: space-between;
118 align-items: center;
119 width: 240px;
120}
121
122.social-logo {
123 color: #fff;
124 justify-self: start;
125 margin-left: 20px;
126 cursor: pointer;
127 text-decoration: none;
128 font-size: 2rem;
129 display: flex;
130 align-items: center;
131 margin-bottom: 16px;
132}
133
134.website-rights {
135 color: #fff;
136 margin-bottom: 16px;
137}
138
139@media screen and (max-width: 820px) {
140 .footer-links {
141 padding-top: 2rem;
142 }
143
144 .footer-input {
145 width: 100%;
146 }
147
148 .btn {
149 width: 100%;
150 }
151
152 .footer-link-wrapper {
153 flex-direction: column;
154 }
155
156 .social-media-wrap {
157 flex-direction: column;
158 }
159}
160
161@media screen and (max-width: 768px) {
162}
Note: See TracBrowser for help on using the repository browser.