forked from Sankalp2009/Overstock-clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.css
92 lines (78 loc) · 1.33 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
*{
margin: 0%;
padding: 0%;
}
.footer {
width: 100%;
margin: auto;
background-color: rgb(94, 93, 93);
}
#vfoot {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
gap: 30px;
width: 85%;
height: auto;
}
.vfooter{
text-decoration: none;
color: white;
}
#vfoot>div {
width: 95%;
margin: auto;
color: rgb(227, 234, 240);
margin-top: 20%;
margin-left: 30%;
margin-bottom: 20%;
font-size: 15px;
}
#vfoot>div>div {
line-height: 40px;
font-size: 14px;
color: white;
}
#vfoot>div>div:hover {
cursor: pointer;
}
.social {
display: flex;
}
#vlast{
width: 100%;
margin-top: 3%;
background-color: rgb(51, 50, 50);
display: flex;
}
#vlast1{
color: white;
margin: auto;
width: 75%;
margin-left: 5%;
margin-top: 3%;
margin-bottom: 3%;
font-size: 14px;
cursor: pointer;
}
#vPrivacy {
margin: auto;
width: 100%;
display: flex;
margin-left: 20%;
margin-top: 3%;
font-size: 14px;
}
#vPrivacy>div{
color: white;
margin-left: 1%;
margin-right: 2%;
cursor: pointer;
}
#vflag{
width: 5%;
margin: right 100%;;
}
#vflag>img{
width: 100%;
}