-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsupport.css
99 lines (95 loc) · 1.54 KB
/
support.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
.BOX {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(12, 1fr));
grid-template-rows: 180px 250px 800px 80px;
grid-gap: 20px;
grid-template-areas:
"a a a a a a a a a a a a "
"b b b b b b b b b b b b"
"c c c c c c c c c c c c "
". d d d d d d d d d d .";
}
.ig1 {
color: black;
grid-area: a;
}
.ig2 {
color: black;
grid-area: b;
margin-left: 100px;
margin-right: 5px;
margin-top: 30px;
display: flex;
}
.ig3 {
color: black;
grid-area: c;
margin-left: 50px;
margin-top: 0px;
padding: 0;
width: 60%;
}
.ig4 {
color: black;
grid-area: d;
margin-top: 0%;
}
#tag {
margin-top: 30px;
font-size: x-large;
}
#two {
display: flex;
}
#sear {
font-size: x-large;
}
#text {
display: flex;
}
#text1 {
justify-content: left;
}
#text2 {
margin-top: 40px;
margin-left: 20px;
}
#contact {
margin-left: 40px;
}
#footer-container {
border-top: 1px solid rgba(151, 151, 151, 0.568);
font-family: Arial, Helvetica, sans-serif;
}
#footer-top {
color: rgb(255, 255, 255);
display: flex;
margin: 30px 8% 20px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#footer-top a {
text-decoration: none;
color: black;
font-size: 12px;
font-weight: 600;
}
.dot {
height: 4px;
width: 4px;
border-radius: 10px;
background-color: rgba(128, 128, 128, 0.301);
margin: 0px 1%;
}
#footer-btm {
display: flex;
margin: 0px 0px 25px;
justify-content: center;
align-items: center;
}
#footer-btm p {
font-size: 12.5px;
padding-bottom: 5px;
margin-left: 5px;
}