File tree 4 files changed +97
-11
lines changed
src/shared/components/tc-communities/communities/veterans
4 files changed +97
-11
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,13 @@ export default function Home({ baseUrl }) {
90
90
</ div >
91
91
92
92
< div styleName = "style.quoteBlock" >
93
- < img
94
- alt = "Qoute avatar"
95
- src = { qouteAvatar }
96
- styleName = "style.qouteAvatar"
97
- />
93
+ < div styleName = "style.qouteAvatar" >
94
+ < img alt = "Qoute avatar" src = { qouteAvatar } />
95
+ < div styleName = "style.qouteNote" >
96
+ < strong > Jarah Meador</ strong > Innovation Crowdsourcing Lead at the
97
+ VA
98
+ </ div >
99
+ </ div >
98
100
< div >
99
101
< div styleName = "style.qouteText" >
100
102
< span styleName = "style.qouteCommas style.left" > “</ span >
@@ -117,7 +119,8 @@ export default function Home({ baseUrl }) {
117
119
< div >
118
120
< h1 > Learn & Explore </ h1 >
119
121
< p >
120
- Grow your skills and get Topcoder-certified — all for free
122
+ Grow your skills and get Topcoder-certified — all for
123
+ free
121
124
</ p >
122
125
< Button to = { `${ baseUrl } /learn` } > Learn More</ Button >
123
126
</ div >
Original file line number Diff line number Diff line change 7
7
justify-content : center ;
8
8
margin : 0 2px ;
9
9
min-height : 281px ;
10
+ padding : 40px ;
10
11
text-align : center ;
11
12
12
13
h1 {
21
22
color : $white ;
22
23
margin-bottom : 40px ;
23
24
}
25
+
26
+ @include xxs-to-xs {
27
+ flex : none ;
28
+ margin : 5px 0 ;
29
+ width : 100% ;
30
+ }
24
31
}
25
32
26
33
.card-01 {
33
40
34
41
.cardsBlock {
35
42
display : flex ;
43
+ flex-wrap : wrap ;
36
44
margin : 0 auto ;
37
45
max-width : $screen-lg ;
46
+ padding : 0 15px ;
38
47
}
39
48
40
49
.header {
44
53
flex-direction : column ;
45
54
height : 500px ;
46
55
justify-content : center ;
56
+ padding : 40px 24px 16px ;
47
57
text-align : center ;
48
58
width : 100% ;
49
59
60
70
margin : 0 auto ;
61
71
max-width : 720px ;
62
72
}
73
+
74
+ @include xxs-to-xs {
75
+ height : auto ;
76
+ }
63
77
}
64
78
65
79
.imageTextBlock {
66
80
margin : 0 auto ;
67
81
max-width : $screen-lg ;
82
+ padding : 0 15px ;
68
83
}
69
84
70
85
.joinButtonInHeader {
77
92
color : $black ;
78
93
margin : 100px auto ;
79
94
max-width : 890px ;
80
- padding : 0 24 px ;
95
+ padding : 0 40 px ;
81
96
text-align : center ;
97
+
98
+ @include xxs-to-xs {
99
+ margin : 50px auto ;
100
+ }
82
101
}
83
102
84
103
.qouteAvatar {
85
- height : 150px ;
86
- margin-right : 40px ;
87
- width : 150px ;
104
+ display : flex ;
105
+
106
+ img {
107
+ height : 150px ;
108
+ margin-right : 40px ;
109
+ width : 150px ;
110
+
111
+ @include xxs-to-xs {
112
+ height : 50px ;
113
+ margin-right : 15px ;
114
+ width : 50px ;
115
+ }
116
+ }
117
+
118
+ .qouteNote {
119
+ display : none ;
120
+
121
+ strong {
122
+ display : block ;
123
+ }
124
+
125
+ @include xxs-to-xs {
126
+ display : block ;
127
+ }
128
+ }
88
129
}
89
130
90
131
.quoteBlock {
91
132
display : flex ;
92
133
margin : 200px auto ;
93
134
max-width : $screen-lg ;
135
+ padding : 0 40px ;
136
+
137
+ @include xxs-to-xs {
138
+ flex-direction : column-reverse ;
139
+ margin : 50px auto ;
140
+ padding : 0 25px ;
141
+ }
94
142
}
95
143
96
144
.qouteCommas {
117
165
strong {
118
166
font-weight : bold ;
119
167
}
168
+
169
+ @include xxs-to-xs {
170
+ display : none ;
171
+ }
120
172
}
121
173
122
174
.qouteText {
Original file line number Diff line number Diff line change 31
31
h1 {
32
32
@include h2 ;
33
33
34
- color : white ;
34
+ color : $white ;
35
+
36
+ @include xxs-to-xs {
37
+ @include h3 ;
38
+
39
+ color : $white ;
40
+ }
35
41
}
36
42
37
43
p {
45
51
margin-bottom : 0 ;
46
52
}
47
53
}
54
+
55
+ @include xxs-to-xs {
56
+ padding : 25px 30px ;
57
+ width : 100% ;
58
+ }
48
59
}
49
60
50
61
.image {
51
62
width : 49.1% ;
63
+
64
+ @include xxs-to-xs {
65
+ width : 100% ;
66
+ }
52
67
}
Original file line number Diff line number Diff line change @@ -15,22 +15,38 @@ $white: white;
15
15
font : 300 42px / 1.19 Roboto;
16
16
margin-bottom : 10px ;
17
17
text-transform : uppercase ;
18
+
19
+ @include xxs-to-xs {
20
+ font : 300 36px / 1.25 Roboto;
21
+ }
18
22
}
19
23
20
24
@mixin h2 {
21
25
color : $black ;
22
26
font : 300 36px / 1.25 Roboto;
23
27
margin-bottom : 10px ;
28
+
29
+ @include xxs-to-xs {
30
+ font : 300 28px / 1.25 Roboto;
31
+ }
24
32
}
25
33
26
34
@mixin h3 {
27
35
color : $black ;
28
36
font : 300 28px / 1.25 Roboto;
37
+
38
+ @include xxs-to-xs {
39
+ font : 300 20px / 1.5 Roboto;
40
+ }
29
41
}
30
42
31
43
@mixin large-text {
32
44
color : $black ;
33
45
font : 20px / 1.25 Roboto;
46
+
47
+ @include xxs-to-xs {
48
+ font : 15px / 1.67 Roboto;
49
+ }
34
50
}
35
51
36
52
@mixin regular-text {
You can’t perform that action at this time.
0 commit comments