Created
October 19, 2020 12:56
-
-
Save eladcandroid/03d72889cb3c716c4be73f89bf15ec75 to your computer and use it in GitHub Desktop.
Angular Tutorial styles.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Global Styles */ | |
* { | |
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; | |
} | |
/* Text */ | |
h1 { | |
font-size: 32px; | |
} | |
h2 { | |
font-size: 20px; | |
} | |
h1, | |
h2 { | |
font-weight: lighter; | |
} | |
p { | |
font-size: 14px; | |
} | |
/* Hyperlink */ | |
a { | |
cursor: pointer; | |
color: #1976d2; | |
text-decoration: none; | |
} | |
a:hover { | |
opacity: 0.8; | |
} | |
/* Input */ | |
input { | |
font-size: 14px; | |
border-radius: 2px; | |
padding: 8px; | |
margin-bottom: 16px; | |
border: 1px solid #bdbdbd; | |
} | |
label { | |
font-size: 12px; | |
font-weight: bold; | |
margin-bottom: 4px; | |
display: block; | |
text-transform: uppercase; | |
} | |
/* Button */ | |
.button, | |
button { | |
display: inline-flex; | |
align-items: center; | |
padding: 8px 16px; | |
border-radius: 2px; | |
font-size: 14px; | |
cursor: pointer; | |
background-color: #1976d2; | |
color: white; | |
border: none; | |
} | |
.button:hover, | |
button:hover { | |
opacity: 0.8; | |
font-weight: normal; | |
} | |
.button:disabled, | |
button:disabled { | |
opacity: 0.5; | |
cursor: auto; | |
} | |
/* Fancy Button */ | |
.fancy-button { | |
background-color: white; | |
color: #1976d2; | |
} | |
.fancy-button i.material-icons { | |
color: #1976d2; | |
padding-right: 4px; | |
} | |
/* Top Bar */ | |
app-top-bar { | |
width: 100%; | |
height: 68px; | |
background-color: #1976d2; | |
padding: 16px; | |
display: flex; | |
flex-direction: row; | |
justify-content: space-between; | |
align-items: center; | |
} | |
app-top-bar h1 { | |
color: white; | |
margin: 0; | |
} | |
/* Checkout Cart, Shipping Prices */ | |
.cart-item, | |
.shipping-item { | |
width: 100%; | |
min-width: 400px; | |
max-width: 450px; | |
display: flex; | |
flex-direction: row; | |
justify-content: space-between; | |
padding: 16px 32px; | |
margin-bottom: 8px; | |
border-radius: 2px; | |
background-color: #eeeeee; | |
} | |
/* | |
Copyright Google LLC. All Rights Reserved. | |
Use of this source code is governed by an MIT-style license that | |
can be found in the LICENSE file at http://angular.io/license | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment