Last active
May 6, 2022 17:40
-
-
Save the-glima/7de200a798c8306e7895bee8ac0a0cb1 to your computer and use it in GitHub Desktop.
NexHealth: Front-end Challenge CSS
This file contains hidden or 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
/* Reset */ | |
li { | |
list-style: none; | |
} | |
ul { | |
margin: 0; | |
padding: 0; | |
} | |
h2 { | |
color: rgb(240, 240, 240); | |
} | |
/* Helper classes */ | |
.small { | |
font-size: 14px; | |
} | |
/* Containers */ | |
body { | |
font-size: 16px; | |
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | |
color: rgb(240, 240, 240); | |
background-color: #484b52; | |
} | |
.container { | |
padding: 20px; | |
} | |
.dupe + .dupe { | |
margin-top: 40px; | |
} | |
/* Card */ | |
.card { | |
padding: 20px; | |
color: rgb(20, 20, 20); | |
background: white; | |
border-radius: 4px; | |
border-left: 4px solid rgb(36, 197, 36); | |
} | |
.card + .card { | |
margin-top: 20px; | |
} | |
.card > span { | |
color: rgb(119, 119, 119); | |
} | |
.card-title { | |
margin: 10px 0; | |
} | |
.rated-info { | |
font-weight: 400; | |
font-size: 18px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment