This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.css
91 lines (85 loc) · 1.57 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
.footer {
align-self: center;
width: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* height: 512px;*/
padding: 8px;
background: #d7dbe0;
}
.footerbar {
position: relative;
top:0%;
width: 100%;
}
.footerbar:before {
content: "";
position: absolute;
left: -15px;
right: 0px;
top: -15px;
height: 15px;
background: radial-gradient(closest-side,
#d7dbe0, #d7dbe0 50%, transparent 50%);
background-size: 20px 20px;
background-position: 5px;
background-repeat: repeat-x;
}
.footerbox {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
height: 188px;
width: 1024px;
}
.footer-list {
top: 20%;
height: 128px;
width: 256px;
text-align: center;
}
.footer p {
text-align:justify;
margin-top: 4px;
margin-bottom: 2px;
}
.footer {
color: #1E274A;
text-align: center;
font-family: 'Nimbus Sans L', sans-serif;
}
.footer h2 {
margin-top: 4px;
margin-bottom: 4px;
}
.footer h3 {
margin-top: 2px;
margin-bottom: 2px;
}
.footer > a:not(:last-child) {
margin-right: 16px;
}
@media(min-width: 858px){
.footerbox {
flex-direction: row;
height: 188px;
}
.footer-list {
margin-right: 200px;
margin-bottom: 0px;
}
}
@media(max-width: 857px){
.footerbox {
flex-direction: column;
height: 296px;
}
.footer-list {
margin-right: 0px;
margin-bottom: 32px;
}
}