angular4-testing/project-manager/src/app/tasks/task-list/task-item.component.css

78 lines
1.2 KiB
CSS
Raw Normal View History

2017-02-24 22:54:59 +01:00
div.task-list-entry, a.task-list-entry {
2017-04-07 02:55:42 +02:00
padding: 8px;
width: 525px;
border-radius: 2px;
border: lightgrey solid 1px;
cursor: pointer;
margin-bottom: -1px;
2017-02-24 22:54:59 +01:00
}
.marked {
2017-04-07 02:55:42 +02:00
background: lightgrey;
2017-02-24 22:54:59 +01:00
}
span {
2017-04-07 02:55:42 +02:00
cursor: pointer;
2017-02-24 22:54:59 +01:00
}
2017-04-07 02:55:42 +02:00
2017-02-24 22:54:59 +01:00
a {
2017-04-07 02:55:42 +02:00
font-size: x-large;
font-weight: 700;
2017-02-24 22:54:59 +01:00
}
2017-04-07 02:55:42 +02:00
2017-02-24 22:54:59 +01:00
small {
2017-04-07 02:55:42 +02:00
color: grey;
2017-02-24 22:54:59 +01:00
}
.trash {
2017-04-07 02:55:42 +02:00
padding-top: 18px;
font-size: 17px;
margin-left: -10px;
2017-02-24 22:54:59 +01:00
}
.selected {
2017-04-07 02:55:42 +02:00
background-color: aliceblue;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
2017-02-24 22:54:59 +01:00
}
2017-04-07 02:55:42 +02:00
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
2017-02-24 22:54:59 +01:00
.fade-in {
2017-04-07 02:55:42 +02:00
opacity: 0; /* make things invisible upon start */
-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
-moz-animation: fadeIn ease-in 1;
animation: fadeIn ease-in 1;
-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-duration: 0.5s;
-moz-animation-duration: 0.5s;
animation-duration: 0.5s;
}