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
{ | |
"userId": 122121, | |
"displayName": "Admin Jay", | |
"firstName": "test ", | |
"lastName": "test", | |
"email": "[email protected]", | |
"lastModified": "2018-12-12T18:38:59.367", | |
"roles": [{ | |
"roleName": "Administrators", | |
"roleId": 0, |
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
@import url('https://fonts.googleapis.com/css?family=Open+Sans'); | |
@import url('https://fonts.googleapis.com/css?family=Lato'); | |
body { | |
font-family: 'Lato', sans-serif; | |
margin: 0; | |
-webkit-font-smoothing: antialiased; | |
font-size: 20px; |
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
.Card { | |
display: grid; | |
grid-template: 1fr 1fr; | |
max-width: 300px; | |
height: 225px; | |
position: relative; | |
overflow: hidden; | |
transition:0.8s cubic-bezier(0.2, 0.82, 0.165, 1); | |
cursor: pointer; | |
box-shadow: 0 20px 40px rgba(0,0,0,0.25); |