File size: 1,333 Bytes
f5071ca |
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 |
.Footer {
color: white;
background-color: #232f3e;
font-size: 13px;
margin-top: 20px;
}
.Footer__Back-To-Top {
background-color: #37475a !important;
text-align: center;
margin-bottom: 40px;
}
.Footer__Back-To-Top:focus,
.Footer__Back-To-Top:hover {
background-color: #485769 !important;
cursor: pointer;
}
.Footer__Back-To-Top-Text {
color: white;
display: block;
padding: 10px 0;
line-height: 19px;
font-size: 40px !important;
}
.Footer__Back-To-Top-Text:hover {
padding: 0;
font-size: 60px !important;
}
.Footer__Vertical-Row {
display: table;
margin: 0 auto;
padding-bottom: 40px;
}
.Footer__Vertical-Col {
display: table-cell;
padding: 0 10px;
line-height: 19px;
}
.Footer__Vertical-Col-Head {
font-weight: 700;
font-family: inherit;
font-size: 16px;
margin: 6px 0 14px 0;
white-space: nowrap;
}
.Footer__Vertical-Col > ul {
margin: 0;
padding: 0;
}
.Footer__Vertical-Col > ul > li {
list-style-type: none;
}
.Footer__Line {
display: flex;
padding: 10px 0;
justify-content: center;
}
.Footer__Line-logo {
width: 100px;
object-fit: contain;
margin: 18px 20px 0 20px;
}
.Footer__Line-message {
align-items: center;
display: flex;
font-size: 120%;
}
.Footer__Line-message > a {
text-decoration: none;
color: white;
margin-left: 5px;
}
|