Created
May 12, 2023 00:39
-
-
Save drteresavasquez/9d44de4b9e7a2b7a551d3b54b1ceb9d8 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
* { | |
box-sizing: border-box; | |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |
-webkit-tap-highlight-color: transparent; | |
} | |
html, | |
body { | |
margin: 0; | |
padding: 0; | |
font-size: 100%; | |
outline: none; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-style: 400; | |
color: #333; | |
font-size: 16px; | |
background-color: #26c6da; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
h1, | |
p, | |
label { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font-weight: normal; | |
font-style: normal; | |
font-size: 100%; | |
line-height: 1; | |
font-family: inherit; | |
vertical-align: baseline; | |
*vertical-align: middle; | |
line-height: normal; | |
*overflow: visible; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
button::-moz-focus-inner, | |
input::-moz-focus-inner { | |
border: 0; | |
padding: 0; | |
} | |
button, | |
input[type="button"], | |
input[type="reset"], | |
input[type="submit"] { | |
cursor: pointer; | |
-webkit-appearance: button; | |
} | |
@keyframes spin { | |
0% { | |
transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(359deg); | |
} | |
} | |
@keyframes glow { | |
0%, | |
100% { | |
opacity: 1; | |
} | |
50% { | |
opacity: 0.5; | |
} | |
} | |
@font-face { | |
font-family: "Nunito Sans"; | |
font-style: italic; | |
font-weight: 400; | |
src: url(https://fonts.gstatic.com/s/nunitosans/v6/pe0oMImSLYBIv1o4X1M8cce4E9lKcw.ttf) | |
format("truetype"); | |
} | |
@font-face { | |
font-family: "Nunito Sans"; | |
font-style: normal; | |
font-weight: 400; | |
src: url(https://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8cce9I94.ttf) | |
format("truetype"); | |
} | |
@font-face { | |
font-family: "Nunito Sans"; | |
font-style: normal; | |
font-weight: 800; | |
src: url(https://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8aBc5tU1Q.ttf) | |
format("truetype"); | |
} | |
.type-light { | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 300; | |
} | |
.type-bold { | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 800; | |
} | |
.type-italic { | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 400; | |
font-style: italic; | |
} | |
input[type="text"], | |
input[type="email"], | |
input[type="password"], | |
textarea { | |
font-size: 14px; | |
line-height: 20px; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-style: 400; | |
padding: 0.75rem 0; | |
line-height: 1.5rem !important; | |
border: none; | |
border-radius: 0; | |
box-sizing: border-box; | |
color: #333; | |
outline: none; | |
} | |
.checkbox { | |
display: inline-block; | |
height: 3rem; | |
position: relative; | |
vertical-align: middle; | |
width: 44px; | |
} | |
.checkbox input[type="checkbox"] { | |
font-size: 1em; | |
visibility: hidden; | |
} | |
.checkbox input[type="checkbox"] + span:before { | |
position: absolute; | |
top: 50%; | |
right: auto; | |
bottom: auto; | |
left: 50%; | |
width: 0.85em; | |
height: 0.85em; | |
transform: translate3d(-50%, -50%, 0); | |
background: transparent; | |
box-shadow: #2cc5d2 0 0 0 1px inset; | |
content: ""; | |
display: block; | |
} | |
.checkbox input[type="checkbox"]:checked + span:before { | |
font-size: 16px; | |
line-height: 24px; | |
box-shadow: none; | |
color: #2cc5d2; | |
margin-top: -1px; | |
font-family: "percolate"; | |
font-style: normal; | |
font-weight: normal; | |
font-variant: normal; | |
text-transform: none; | |
line-height: 1; | |
content: "\e65e"; | |
} | |
.input-symbol { | |
display: inline-block; | |
position: relative; | |
} | |
.input-symbol.error [class^="icon-"], | |
.input-symbol.error [class*=" icon-"] { | |
color: #ff4400; | |
} | |
.input-symbol [class^="icon-"], | |
.input-symbol [class*=" icon-"] { | |
left: 1em; | |
} | |
.input-symbol input { | |
padding-left: 3em; | |
} | |
.input-symbol input { | |
width: 100%; | |
} | |
.input-symbol input:focus + [class^="icon-"], | |
.input-symbol input:focus + [class*=" icon-"] { | |
color: #2cc5d2; | |
} | |
.input-symbol [class^="icon-"], | |
.input-symbol [class*=" icon-"] { | |
transition: all 300ms ease-in; | |
transform: translate3d(0, -50%, 0); | |
background: transparent; | |
color: #aaa; | |
font-size: 1em; | |
height: 1em; | |
position: absolute; | |
top: 50%; | |
width: 1em; | |
} | |
@font-face { | |
font-family: "percolate"; | |
src: url("./assets/icon/percolate.eot?-5w3um4"); | |
src: url("./assets/icon/percolate.eot?#iefix5w3um4") | |
format("embedded-opentype"), | |
url("./assets/icon/percolate.woff?5w3um4") format("woff"), | |
url("./assets/icon/percolate.ttf?5w3um4") format("truetype"), | |
url("./assets/icon/percolate.svg?5w3um4") format("svg"); | |
font-weight: normal; | |
font-style: normal; | |
} | |
[class^="icon-"], | |
[class*=" icon-"] { | |
font-family: "percolate"; | |
font-style: normal; | |
font-weight: normal; | |
font-variant: normal; | |
text-transform: none; | |
line-height: 1; | |
} | |
.icon-star:before { | |
content: "\e608"; | |
} | |
.icon-face-sad:before { | |
content: "\e60f"; | |
} | |
.icon-check:before { | |
content: "\e65e"; | |
} | |
.list-heading { | |
letter-spacing: 0.3em; | |
text-indent: 0.3em; | |
text-transform: uppercase; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 800; | |
font-size: 11px; | |
padding-left: 15px; | |
line-height: 40px; | |
background: #f8f8f8; | |
color: #aaa; | |
} | |
.list-heading .icon-sync { | |
opacity: 1; | |
animation: spin 2s infinite linear; | |
display: inline-block; | |
margin-right: 4px; | |
} | |
.list-item { | |
font-size: 14px; | |
line-height: 20px; | |
display: flex; | |
flex-wrap: wrap; | |
height: 3rem; | |
width: 100%; | |
background: white; | |
transition: all ease-out 150ms; | |
} | |
.list-item .title { | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
flex: 1; | |
} | |
.list-item input[type="text"] { | |
background: transparent; | |
width: 100%; | |
} | |
.list-item input[type="text"]:focus { | |
cursor: text; | |
} | |
.pin-button { | |
width: 3rem; | |
height: 3rem; | |
background: transparent; | |
border: none; | |
text-align: center; | |
transition: all 200ms ease-in; | |
color: #eee; | |
font-size: 16px; | |
line-height: 3rem; | |
outline: none; | |
} | |
.pin-button:hover { | |
color: #2cc5d2; | |
} | |
.pin-button:focus { | |
outline-color: transparent; | |
} | |
.pin-button:active { | |
color: #555; | |
} | |
.list-item.TASK_PINNED .icon-star { | |
color: #2cc5d2; | |
} | |
.list-item.TASK_ARCHIVED input[type="text"] { | |
color: #a0aec0; | |
text-decoration: line-through; | |
} | |
.list-item:hover { | |
background-image: linear-gradient(to bottom, #e5f9f7 0%, #f0fffd 100%); | |
} | |
.list-item:hover .checkbox { | |
cursor: pointer; | |
} | |
.list-item + .list-item { | |
border-top: 1px solid #f0f9fb; | |
} | |
.list-item.checked input[type="text"] { | |
color: #ccc; | |
text-decoration: line-through; | |
} | |
.list-item.checked .delete-item { | |
display: inline-block; | |
} | |
.loading-item { | |
height: 3rem; | |
width: 100%; | |
background: white; | |
display: flex; | |
align-items: center; | |
line-height: 1rem; | |
padding-left: 16px; | |
} | |
.loading-item .glow-checkbox, | |
.loading-item .glow-text span { | |
animation: glow 1.5s ease-in-out infinite; | |
background: #eee; | |
color: transparent; | |
cursor: progress; | |
display: inline-block; | |
} | |
.loading-item .glow-checkbox { | |
margin-right: 16px; | |
width: 12px; | |
height: 12px; | |
} | |
.loading-item + .loading-item { | |
border-top: 1px solid #f0f9fb; | |
} | |
.list-items { | |
position: relative; | |
background: white; | |
min-height: 288px; | |
} | |
.list-items .select-placeholder { | |
border: none; | |
width: 48px; | |
} | |
.wrapper-message { | |
position: absolute; | |
top: 45%; | |
right: 0; | |
bottom: auto; | |
left: 0; | |
width: auto; | |
height: auto; | |
transform: translate3d(0, -50%, 0); | |
text-align: center; | |
} | |
.wrapper-message [class^="icon-"], | |
.wrapper-message [class*=" icon-"] { | |
font-size: 48px; | |
line-height: 56px; | |
color: #2cc5d2; | |
display: block; | |
} | |
.wrapper-message .title-message { | |
font-size: 16px; | |
line-height: 24px; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-weight: 800; | |
color: #4a5568; | |
} | |
.wrapper-message .subtitle-message { | |
font-size: 14px; | |
line-height: 20px; | |
color: #4a5568; | |
} | |
.page.lists-show { | |
min-height: 100vh; | |
background: white; | |
} | |
.page.lists-show nav { | |
background: #d3edf4; | |
padding: 1.5rem 1.25rem; | |
text-align: center; | |
} | |
@media screen and (min-width: 40em) { | |
.page.lists-show nav { | |
text-align: left; | |
} | |
} | |
.page.lists-show nav .title-page { | |
font-size: 20px; | |
line-height: 24px; | |
line-height: 2rem; | |
cursor: pointer; | |
white-space: nowrap; | |
font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
font-weight: 800; | |
color: #1c3f53; | |
display: inline-block; | |
vertical-align: top; | |
max-width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment