Navigation.css (784B)
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 .root { 11 float: right; 12 margin: 6px 0 0; 13 } 14 15 .link { 16 display: inline-block; 17 padding: 3px 8px; 18 text-decoration: none; 19 font-size: 1.125em; /* ~18px */ 20 } 21 22 .link, 23 .link:active, 24 .link:visited { 25 color: rgba(255, 255, 255, 0.6); 26 } 27 28 .link:hover { 29 color: rgba(255, 255, 255, 1); 30 } 31 32 .highlight { 33 margin-right: 8px; 34 margin-left: 8px; 35 border-radius: 3px; 36 background: rgba(0, 0, 0, 0.15); 37 color: #fff; 38 } 39 40 .highlight:hover { 41 background: rgba(0, 0, 0, 0.3); 42 } 43 44 .spacer { 45 color: rgba(255, 255, 255, 0.3); 46 }