-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
107 lines (86 loc) · 1.51 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
.teste{
width: 500px;
text-align: center;
font-size:32pt;
color:#FFFFFF;
height:auto;
}
html{
background-color: #10133A;
}
nav a:hover{
color: #FFFFFF;
transition: 0.8s;
}
footer a:hover{
color: #FFFFFF;
}
footer a{
/* background:#10133A; */
font-weight: bold;
font-family: monospace;
color: #DC281E;
text-decoration: none;
font-size: 10pt;
}
footer li{
display: inline;
margin: 0 0 0 30px;
}
footer{
width:940px;
height: 50px;
text-align: center;
position: relative;
bottom: 0px;
padding: 20px;
margin: auto auto 0px auto;
/* background-image: linear-gradient(#10133A, black); */
}
#footer{
width: 940px;
margin: auto auto auto auto;
}
.foot1{
margin: 0;
}
/*footer dropup*/
.dropbtnup {
background-color: #10133A;
color: #DC281E;
padding: 16px;
font-size: 10pt;
border: none;
font-family: monospace;
font-weight: bold;
}
.dropup {
position: relative;
display: inline-block;
}
.dropup-content {
display: none;
position: absolute;
bottom: 50px;
background-color: #10133A;
min-width: 160px;
z-index: 1;
left:-37px;
}
.dropup-content a {
color: #DC281E;
padding: 12px 16px;
text-decoration: none;
display: block;
font-family: monospace;
}
.dropup-content a:hover {
background-color: #10133A;
color: #FFFFFF;
}
.dropup:hover .dropup-content {
display: block;
}
.dropup:hover .dropbtn {
background-color: #2980B9;
}