forked from jwalapc/medico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabtestfoot.css
120 lines (115 loc) · 2.08 KB
/
labtestfoot.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
.foot{
padding-top: 2%;
background-color: #f0f0f0;
color: #383838;
height: 400px;
position: relative;
}
.foot-content{
justify-content: space-between;
display: flex;
}
.foot-shop{
flex-basis: 15%;
padding-left: 2%;
}
.foot-shop ul li{
list-style: none;
display:list-item;
}
.foot-shop ul li a{
text-decoration: none;
color: #35038c ;
}
.foot-shop ul li a:hover{
color:red;
text-transform:uppercase;
text-shadow: #210541;
}
.foot-company{
flex-basis: 15%;
}
.foot-company ul li{
list-style: none;
display:list-item;
}
.foot-company ul li a{
color: #b45d0b;
text-decoration: none;
}
.foot-company ul li a:hover{
color:darkblue;
text-transform:uppercase;
text-shadow: #210541;
}
.foot-help{
flex-basis: 15%;
}
.foot-help ul li{
list-style: none;
display:list-item;
}
.foot-help ul li a{
color: red;
text-decoration: none;
}
.foot-help ul li a:hover{
color:indigo;
text-transform:uppercase;
text-shadow: #210541;
}
.foot-icons{
flex-basis: 15%;
padding-right: 3%;
}
.fab{
margin: 0 13px;
cursor: pointer;
padding: 18px 0;
color: #3e4444;
}
.foot .foot-bottom{
background-color: #DCDCDC;
color: #3e4444;
height: 40px;
text-align: center;
position: absolute;
padding-top: 20px;
bottom: 0px;
left: 0px;
width: 100%;
}
@media(max-width:500px){
.foot{
height: 690px;
}
.foot .foot-content{
flex-direction: column;
margin-left: 5%;
}
.foot .foot-content .foot-shop{
font-size: 16px;
}
.foot .foot-content .foot-shop ul li a{
color: #3e4444;
text-decoration: none;
}
.foot .foot-content .foot-company{
text-decoration: none;
color: #3e4444;
font-size: 16px;
}
.foot .foot-content .foot-company ul li a{
color: #3e4444;
text-decoration: none;
}
.foot .foot-bottom{
text-decoration: none;
height: 20px;
font-size: 14px;
}
.foot .foot-content .foot-help ul li a{
color: #3e4444;
text-decoration: none;
}
}