44// SASS VARIABLES
55
66// COLORS
7+ $color-bg : rgba (255 , 255 , 255 , 0.1 );
78$color-primary : rgb (255 , 255 , 255 );
89$color-secondary : rgb (49 , 49 , 49 );
910$font-family : " Nunito" , sans-serif ;
@@ -16,6 +17,7 @@ $font-color-secondary: rgba(255, 255, 255, 1);
1617
1718:root {
1819 // COLORS
20+ --color-bg : #{$color-bg } ;
1921 --color-primary : #{$color-primary } ;
2022 --color-secondary : #{$color-secondary } ;
2123 --font-family : #{$font-family } ;
@@ -42,10 +44,43 @@ $font-color-secondary: rgba(255, 255, 255, 1);
4244}
4345
4446body {
45- background-color : var (--color-primary );
47+ background-color : var (--color-bg );
4648 color : var (--font-color-primary );
4749 font-family : var (--font-family );
4850 font-weight : var (--font-weight );
4951 text-shadow : var (--font-shadow );
5052 font-size : var (--font-size );
53+ }
54+
55+ .app-container {
56+ animation-name : background- show;
57+ animation-duration : 2s ;
58+ animation-iteration-count : 1 ;
59+ animation-fill-mode : forwards ;
60+ animation-delay : 1s ;
61+ opacity : 0 ;
62+ }
63+
64+ @keyframes background-show {
65+ from {
66+ opacity : 0 ;
67+ transform : scale (1.1 );
68+ }
69+
70+ to {
71+ opacity : 1 ;
72+ }
73+ }
74+
75+ // Projects
76+ .project {
77+
78+ & :hover {
79+ & a {
80+ @apply scale- 110;
81+ }
82+ & img {
83+ @apply scale- 110;
84+ }
85+ }
5186}
0 commit comments