1234567891011121314151617181920212223242526272829303132333435 |
- /* Sticky footer styles
- -------------------------------------------------- */
- html {
- position: relative;
- min-height: 100%;
-
- }
- body {
- /* Margin bottom by footer height */
- margin-bottom: 4em;
-
- }
- footer {
- position: absolute;
- width: 100%;
- padding-top: 10px;
- background-color: #333;
- bottom: 0px;
- height:100px
-
- }
- p.copyright
- {
- text-align: left;
- color:white;
- margin:30px 40px;
- }
- footer .logo
- {
-
- margin:20px 30px 0 40px;
- }
- footer .col-md-12 {
- margin-bottom: 0
- }
|