38
38
39
39
header {
40
40
grid-area : h;
41
- display : grid ;
42
- grid-template-columns : repeat (12 , 1fr );
43
- grid-template-rows : 115px ;
41
+ display : flex ;
44
42
}
45
43
46
44
.logo {
47
- grid-column : 1 / span 6 ;
45
+ width : 50 % ;
48
46
display : flex ;
49
47
justify-content : flex-start ;
50
48
align-items : center ;
51
- color : #fff ;
52
49
height : 115px ;
53
50
}
54
51
52
+ .logo > p {
53
+ color : #fff ;
54
+ display : flex ;
55
+ font-weight : bold ;
56
+ padding-bottom : 1px ;
57
+ }
58
+
55
59
.headerIcon {
56
60
width : 50px ;
57
61
height : 50px ;
@@ -61,15 +65,15 @@ header {
61
65
}
62
66
63
67
nav {
64
- grid-column : 7 / span 6 ;
68
+ width : 50 % ;
65
69
display : flex ;
66
70
justify-content : flex-end ;
67
71
align-items : center ;
68
- color : #fff ;
69
72
height : 115px ;
70
73
}
71
74
72
75
nav > ul {
76
+ color : #fff ;
73
77
display : flex ;
74
78
list-style-type : none ;
75
79
}
@@ -82,9 +86,16 @@ nav > ul li:first-child {
82
86
padding-left : 0px ;
83
87
}
84
88
85
- nav > ul li a {
89
+ nav > ul li a :link ,
90
+ nav > ul li a :visited {
86
91
text-decoration : none ;
87
- color : #fff ;
92
+ color : rgba (#fff , 0.6 );
93
+ }
94
+
95
+ nav > ul li a :hover ,
96
+ nav > ul li a :active {
97
+ text-decoration : none ;
98
+ color : rgba (#fff , 1 );
88
99
}
89
100
90
101
.appInfo {
@@ -96,7 +107,6 @@ nav > ul li a {
96
107
}
97
108
98
109
.appIconShadow {
99
- display : flex ;
100
110
filter : $drop-shadow ;
101
111
}
102
112
@@ -109,21 +119,19 @@ nav > ul li a {
109
119
}
110
120
111
121
.appNamePriceContainer {
122
+ display : flex ;
112
123
height : 120px ;
113
124
flex : 0 1 auto ;
114
- align-items : flex- center;
115
- align-content : center ;
125
+ align-items : center ;
116
126
}
117
127
118
128
.appName {
119
129
color : #fff ;
120
- margin-top : -4px ;
121
130
}
122
131
123
132
.appPrice {
124
133
color : #fff ;
125
134
font-weight : normal ;
126
- padding-top : 8px ;
127
135
}
128
136
129
137
.appDescriptionContainer {
@@ -135,7 +143,6 @@ nav > ul li a {
135
143
136
144
.appDescription {
137
145
color : #fff ;
138
- font-weight : normal ;
139
146
}
140
147
141
148
.downloadButtonsContainer {
@@ -225,7 +232,12 @@ nav > ul li a {
225
232
margin-left : 18px ;
226
233
}
227
234
235
+ .featureText > h3 {
236
+ color : $primary-text-color ;
237
+ }
238
+
228
239
.featureText > p {
240
+ color : $secondary-text-color ;
229
241
margin-top : 8px ;
230
242
line-height : 1.5 ;
231
243
}
@@ -239,6 +251,7 @@ footer {
239
251
}
240
252
241
253
.footerText {
254
+ color : $secondary-text-color ;
242
255
display : block ;
243
256
width : 100% ;
244
257
text-align : center ;
0 commit comments