| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*next step*/
- .footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- background-color: #393939;
- color: white;
- z-index: 99999;
-
- }
-
- .footer_class{
- list-style-type: none;
- display: inline-flex;
- margin: 12px 0px;
- width: 100%;
- float: left;
- }
- .footer_class li{
- // padding: 0px 90px;
- border-right: 1px solid #fff;
- font-size: 14px;
- width: 25%;
- text-align: center;
- float: left;
-
- }
- .footer_class li a{
- text-decoration:none;
- color:#fff;
- cursor: pointer !important;
- }
- .footer_class li:last-child{
- border-right: none !important;
- }
- .active {
- color: #37b1ec !important;
- }
|