Created
April 13, 2020 23:08
-
-
Save JudahGabriel/b523d0d9fb41ee013c17685bac65c2b3 to your computer and use it in GitHub Desktop.
Shows how to style <pwa-auth> using shadow parts
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
/* The Sign In button itself */ | |
pwa-auth::part(signInButton) { | |
color: white; | |
background-color: green; | |
transform: rotate3d(0, 0, 1, 10deg); | |
} | |
/* The MS button */ | |
pwa-auth::part(microsoftButton) { | |
color: teal; | |
font-family: "Comic Sans MS"; /*So sorry*/ | |
text-decoration: underline; | |
font-size: 1.2em; | |
} | |
/* The Google button */ | |
pwa-auth::part(googleButton) { | |
box-shadow: inset 8px 0 1px orange; | |
letter-spacing: 4px; | |
font-size: 1.2em; | |
} | |
/* The Facebook button */ | |
pwa-auth::part(facebookButton) { | |
font-family: "Segoe Script", "script"; | |
font-size: 1.2em; | |
} | |
/* The Facebook icon */ | |
pwa-auth::part(facebookIcon) { | |
transform: rotateZ(50deg); | |
} | |
/* The dropdown menu */ | |
pwa-auth::part(dropdownMenu) { | |
border-radius: 10px 0; | |
border: 3px dotted blue; | |
margin-top: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment