Footer.css (757B)
1 /** 2 * React Starter Kit (https://www.reactstarterkit.com/) 3 * 4 * Copyright © 2014-present Kriasoft, LLC. All rights reserved. 5 * 6 * This source code is licensed under the MIT license found in the 7 * LICENSE.txt file in the root directory of this source tree. 8 */ 9 10 @import '../variables.css'; 11 12 .root { 13 background: #333; 14 color: #fff; 15 } 16 17 .container { 18 margin: 0 auto; 19 padding: 20px 15px; 20 max-width: var(--max-content-width); 21 text-align: center; 22 } 23 24 .text { 25 color: rgba(255, 255, 255, 0.5); 26 } 27 28 .spacer { 29 color: rgba(255, 255, 255, 0.3); 30 } 31 32 .text, 33 .link { 34 padding: 2px 5px; 35 font-size: 1em; 36 } 37 38 .link, 39 .link:active, 40 .link:visited { 41 color: rgba(255, 255, 255, 0.6); 42 text-decoration: none; 43 } 44 45 .link:hover { 46 color: rgba(255, 255, 255, 1); 47 }