File tree Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ body.index {
25
25
.hero {
26
26
background : @dark-color ;
27
27
color : #f8f8f8 ;
28
+ min-height : 500px ;
29
+ max-height : 1000px ;
28
30
height : 80vh ;
29
31
position : relative ;
30
32
z-index : 11 ;
@@ -34,15 +36,25 @@ body.index {
34
36
-moz-osx-font-smoothing : grayscale ;
35
37
36
38
header {
37
- background : none ;
39
+ background : linear-gradient (
40
+ fadeout(@dark-color, 20% ),
41
+ fadeout (@dark-color , 100% )
42
+ );
38
43
box-shadow : none ;
44
+ min-height : 75px ;
45
+ max-height : 150px ;
46
+ height : 12vh ;
39
47
40
- nav a :hover , nav a :focus {
41
- color : white ;
42
- }
48
+ nav > a {
49
+ text-shadow : 0 1px 1px @dark-color , 0 0 3px @dark-color ;
50
+
51
+ & :hover , & :focus {
52
+ color : white ;
53
+ }
43
54
44
- a :first-child {
45
- margin-left : -1em ;
55
+ & :first-child {
56
+ margin-left : -1em ;
57
+ }
46
58
}
47
59
}
48
60
@@ -63,6 +75,8 @@ body.index {
63
75
.content {
64
76
text-align : center ;
65
77
margin : 30px ;
78
+ animation : fade 1.3s ease-in-out ;
79
+ animation-fill-mode : both ;
66
80
}
67
81
68
82
.main-logo {
@@ -100,7 +114,7 @@ body.index {
100
114
.fadein-cols (@n ) when (@n > 0 ) {
101
115
.fadein-cols (@n - 1 );
102
116
.marketing-col :nth- child(@{n} ) {
103
- animation : fade 1.1s 0.8s * ( @n - 1 ) ease-in-out ;
117
+ animation : fade 1.1s 0.8s * @n ease-in-out ;
104
118
animation-fill-mode : both ;
105
119
}
106
120
}
You can’t perform that action at this time.
0 commit comments