1
- $shadow-primary : #6E48AA ;
2
- $shadow-secondary : #9D50BB ;
1
+ $shadow-primary : #1e3c72 ;
2
+ $shadow-secondary : #2a5298 ;
3
3
4
4
.home {
5
5
6
+ .header {
7
+ display : grid ;
8
+ grid-template-columns : 30vw 70vw ;
9
+ width : 100% ;
10
+ position : fixed ;
11
+ z-index : 10 ;
12
+ box-shadow : 0 3px 6px rgba (0 , 0 , 0 , 0.16 ), 0 3px 6px rgba (0 , 0 , 0 , 0.23 );
13
+
14
+ .left {
15
+ padding : 1em 1em 1em 2em ;
16
+ text-align : left ;
17
+ background : $shadow-primary ;
18
+ }
19
+
20
+ .right {
21
+ background : #ffffff ;
22
+ display : flex ;
23
+ align-items : center ;
24
+ justify-content : flex-end ;
25
+ padding-right : 10vw ;
26
+
27
+ a {
28
+ text-transform : uppercase ;
29
+ color : #000 ;
30
+ font-size : 12px ;
31
+ margin-right : 2em ;
32
+ text-decoration : none ;
33
+
34
+ & :last-child {
35
+ margin : 0 ;
36
+ }
37
+
38
+ & :hover:not (.hire-me ) {
39
+ color : $shadow-secondary ;
40
+ border-bottom : 1px solid $shadow-secondary ;
41
+ }
42
+ }
43
+
44
+ .hire-me {
45
+ color : #ffffff ;
46
+ background : linear-gradient (to right , $shadow-primary , $shadow-primary );
47
+ padding : 2px 12px ;
48
+ border-radius : 12px ;
49
+ }
50
+ }
51
+ }
52
+
6
53
.top-section {
7
54
height : 100vh ;
8
55
width : 100% ;
9
56
color : #fff ;
10
57
background : $shadow-secondary ;
11
58
background : linear-gradient (to right , $shadow-primary , $shadow-primary );
12
59
display : grid ;
13
- grid-template-columns : 30% 70% ;
60
+ grid-template-columns : 30vw 70vw ;
61
+
14
62
15
63
.left {
16
64
height : 100% ;
@@ -29,7 +77,7 @@ $shadow-secondary: #9D50BB;
29
77
box-shadow : 0 3px 6px rgba (0 , 0 , 0 , 0.16 ), 0 3px 6px rgba (0 , 0 , 0 , 0.23 );
30
78
border : 10px solid #ffffff ;
31
79
overflow : visible ;
32
- z-index : 10 ;
80
+ z-index : 1 ;
33
81
display : flex ;
34
82
align-items : center ;
35
83
justify-content : center ;
0 commit comments