1/* EXAMPLE
2projetos-hover is father; projetos-hover-text is the child
3When hover on the father use ">" to aply on a child
4*/
5
6.projetos-hover-text {
7 transform: translateY(-50%);
8 transition: all 0.2s ease 0s;
9}
10
11.projetos-hover:hover > .projetos-hover-text {
12 transform: translatey(+5%);
13}