Created
November 27, 2019 14:20
-
-
Save jongravois/4faff24747b337805307de16e1006e7d to your computer and use it in GitHub Desktop.
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
.v--modal-overlay { | |
background: rgba(0, 0, 0, 0.3); | |
} | |
.cause_btn { | |
width: 90%; | |
margin: auto; | |
padding: 0.75rem; | |
border: 1px solid #dadada; | |
color: #777; | |
cursor: pointer; | |
} | |
.cause_btn.active { | |
color: white; | |
background-color: #27AE60; | |
} | |
.reason_btn { | |
width: 90%; | |
margin: auto; | |
padding: 5px; | |
border: 1px solid #dadada; | |
color: #777; | |
cursor: pointer; | |
} | |
.reason_btn.active { | |
color: white; | |
background-color: #27AE60; | |
} | |
.card { | |
background-color: #fff; | |
border-radius: 0.25rem; | |
padding: 2rem; | |
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), | |
0 5px 15px 0 rgba(0, 0, 0, 0.08); | |
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), | |
0 5px 15px 0 rgba(0, 0, 0, 0.08); | |
} | |
.contact-list { | |
border-top-width: 1px; | |
border-color: #f1f5f8; | |
} | |
.contact-list-item { | |
background-color: #fff; | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-align: center; | |
-ms-flex-align: center; | |
align-items: center; | |
-webkit-box-pack: justify; | |
-ms-flex-pack: justify; | |
justify-content: space-between; | |
padding: 1rem; | |
border-bottom-width: 1px; | |
border-color: #f1f5f8; | |
} | |
.contact-list-item.draggable-source--is-dragging { | |
background-color: #f1f5f8; | |
} | |
.contact-list-item.draggable-source--is-dragging > * { | |
opacity: 0; | |
} | |
.contact-list-contact { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-align: center; | |
-ms-flex-align: center; | |
align-items: center; | |
} | |
.contact-list-avatar { | |
height: 3rem; | |
width: 3rem; | |
border-radius: 9999px; | |
display: block; | |
margin-right: 0.5rem; | |
} | |
.contact-list-name { | |
font-weight: 700; | |
} | |
.contact-list-email { | |
color: #8795a1; | |
} | |
.contact-list-handle { | |
margin-left: 0.5rem; | |
height: 1.5rem; | |
width: 1.5rem; | |
cursor: move; | |
color: #b8c2cc; | |
} | |
.contact-list-handle:hover { | |
color: #3d4852; | |
} | |
.profile-card { | |
background-color: #fff; | |
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), | |
0 5px 15px 0 rgba(0, 0, 0, 0.08); | |
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11), | |
0 5px 15px 0 rgba(0, 0, 0, 0.08); | |
border-radius: 0.5rem; | |
overflow: hidden; | |
padding: 1rem 1.5rem; | |
} | |
.profile-card-image { | |
display: block; | |
border-radius: 9999px; | |
margin-left: auto; | |
margin-right: auto; | |
margin-bottom: 1rem; | |
height: 5rem; | |
} | |
.profile-card-meta { | |
text-align: center; | |
} | |
.profile-card--horizontal { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-align: center; | |
-ms-flex-align: center; | |
align-items: center; | |
} | |
.profile-card--horizontal .profile-card-image { | |
margin-left: 0; | |
margin-right: 1rem; | |
margin-bottom: 0; | |
height: 6rem; | |
} | |
.profile-card--horizontal .profile-card-meta { | |
text-align: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment