Skip to content

Instantly share code, notes, and snippets.

@the-glima
Last active May 6, 2022 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save the-glima/7de200a798c8306e7895bee8ac0a0cb1 to your computer and use it in GitHub Desktop.
Save the-glima/7de200a798c8306e7895bee8ac0a0cb1 to your computer and use it in GitHub Desktop.
NexHealth: Front-end Challenge CSS
/* 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