source: frontend/src/styles/Footer.css@ 55ed171

Last change on this file since 55ed171 was b612ab1, checked in by Nace Gjorgjievski <nace.gorgievski123@…>, 23 months ago

Basic functions added

  • Property mode set to 100644
File size: 845 bytes
Line 
1.footer {
2 box-sizing: border-box;
3 margin-top: 40px;
4 padding-top: 10px;
5 border-top: 5px solid red;
6 display: flex;
7 justify-content: space-evenly;
8}
9
10.footer__social {
11 display: flex;
12 flex-direction: column;
13}
14
15.footer__social img {
16 width: 30px;
17 margin-top: 7px;
18}
19
20.socialIconText {
21 display: flex;
22 align-items: center;
23 cursor: pointer;
24}
25
26.socialIconText span {
27 margin-left: 5px;
28}
29
30.footer__newsletter {
31 display: flex;
32 flex-direction: column;
33}
34
35.footer__newsletter div {
36 width: auto;
37 display: flex;
38}
39
40.footer__newsletter input {
41 background-color: #e9e9e9;
42 border: none;
43 height: 30px;
44}
45
46#email {
47 flex: 1;
48}
49#submit {
50 height: 32px;
51 cursor: pointer;
52 user-select: none;
53}
54
55#email:focus {
56 outline: none;
57}
58
59@media only screen and (max-width: 440px) {
60 .footer {
61 flex-direction: column;
62 }
63}
Note: See TracBrowser for help on using the repository browser.