/* You can add global styles to this file, and also import other style files */ * { font-family: 'Roboto', Arial, sans-serif; color: #616161; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { margin: 0; } .container { display: flex; flex-direction: row; } router-outlet + * { padding: 0 16px; } h2 { font-size: 24px; } p { font-size: 14px; } a { cursor: pointer; color: white; text-decoration: none; } a:hover { opacity: 0.8; } app-navbar { width: 100%; height: 68px; background-color:cornflowerblue; padding: 16px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; } app-navbar h2 { color: white; margin: 0; } app-navbar a:focus { color: silver; }