3838
3939header {
4040 grid-area : h;
41- display : grid ;
42- grid-template-columns : repeat (12 , 1fr );
43- grid-template-rows : 115px ;
41+ display : flex ;
4442}
4543
4644.logo {
47- grid-column : 1 / span 6 ;
45+ width : 50 % ;
4846 display : flex ;
4947 justify-content : flex-start ;
5048 align-items : center ;
51- color : #fff ;
5249 height : 115px ;
5350}
5451
52+ .logo > p {
53+ color : #fff ;
54+ display : flex ;
55+ font-weight : bold ;
56+ padding-bottom : 1px ;
57+ }
58+
5559.headerIcon {
5660 width : 50px ;
5761 height : 50px ;
@@ -61,15 +65,15 @@ header {
6165}
6266
6367nav {
64- grid-column : 7 / span 6 ;
68+ width : 50 % ;
6569 display : flex ;
6670 justify-content : flex-end ;
6771 align-items : center ;
68- color : #fff ;
6972 height : 115px ;
7073}
7174
7275nav > ul {
76+ color : #fff ;
7377 display : flex ;
7478 list-style-type : none ;
7579}
@@ -82,9 +86,16 @@ nav > ul li:first-child {
8286 padding-left : 0px ;
8387}
8488
85- nav > ul li a {
89+ nav > ul li a :link ,
90+ nav > ul li a :visited {
8691 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 );
8899}
89100
90101.appInfo {
@@ -96,7 +107,6 @@ nav > ul li a {
96107}
97108
98109.appIconShadow {
99- display : flex ;
100110 filter : $drop-shadow ;
101111}
102112
@@ -109,21 +119,19 @@ nav > ul li a {
109119}
110120
111121.appNamePriceContainer {
122+ display : flex ;
112123 height : 120px ;
113124 flex : 0 1 auto ;
114- align-items : flex- center;
115- align-content : center ;
125+ align-items : center ;
116126}
117127
118128.appName {
119129 color : #fff ;
120- margin-top : -4px ;
121130}
122131
123132.appPrice {
124133 color : #fff ;
125134 font-weight : normal ;
126- padding-top : 8px ;
127135}
128136
129137.appDescriptionContainer {
@@ -135,7 +143,6 @@ nav > ul li a {
135143
136144.appDescription {
137145 color : #fff ;
138- font-weight : normal ;
139146}
140147
141148.downloadButtonsContainer {
@@ -225,7 +232,12 @@ nav > ul li a {
225232 margin-left : 18px ;
226233}
227234
235+ .featureText > h3 {
236+ color : $primary-text-color ;
237+ }
238+
228239.featureText > p {
240+ color : $secondary-text-color ;
229241 margin-top : 8px ;
230242 line-height : 1.5 ;
231243}
@@ -239,6 +251,7 @@ footer {
239251}
240252
241253.footerText {
254+ color : $secondary-text-color ;
242255 display : block ;
243256 width : 100% ;
244257 text-align : center ;
0 commit comments