-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
127 lines (109 loc) · 2.05 KB
/
footer.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
footer *{
font-size: 20px;
color: #ffffff;
outline:none !important;
scroll-behavior: smooth;
margin: 0;
padding: 0;
}
footer{
background: #535353;
min-height: 60vh;
font-family: Montserrat, 'serrif';
padding: 30px 20px;
}
footer li{
list-style: none;
}
footer a{
text-decoration: none;
margin: 10px;
}
footer hr{
width: 90%;
border: .8px solid #b1afaf;
margin: 20px auto;
background: #b1afaf;
}
footer .newsletter{
width: 90%;
margin: 20px auto;
}
footer .newsletter .sbs-nws{
float: right;
margin-bottom: 20px;
}
footer .sbs-nws .email{
margin-right: 0;
margin-left: 10px;
color: #535353;
height: 30px;
padding: 5px 15px;
border: 1px solid #8206e8;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
footer .sbs-nws .submit{
margin-left: -5px;
background: #8206e8;
font-size: 22px;
padding: 7px 25px;
border: 1px solid #8206e8;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
footer .sbs-nws .submit:hover{
cursor: pointer;
background: #a02bff;
}
footer .footer_section{
padding: 15px 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 2em;
width: 100%;
}
footer .footer_section li a{
line-height: 32px;
}
footer .footer_section .sec1 li a i{
color: #ffffff;
font-size: 1.6em;
transition: 0.5s;
margin-right: 20px;
margin-top: 2px;
}
footer .footer_section li a:hover{
font-size: 20.3px;
color: #f1cff8;
}
footer .social_media .sci{
display: flex;
margin: 20px;
}
footer .sec1{
width: 23vw;
text-align: center;
margin:5px auto;
}
footer .sec1 .tag{
font-size: 22px;
font-weight: 500;
}
@media (max-width: 720px) {
footer .sec1{
width: 75vw;
text-align: center;
margin:3px auto;
}
footer .sbs-nws .email{
margin-left: 0;
margin-top: 10px;
padding: 3px 5px;
}
footer .sbs-nws .submit{
margin-top: 10px;
font-size: 20px;
padding: 6.2px 15px;
}
}