News Landing Feature
Example
See in Kitchen Sink.
News
College of Business
CEHHS Alum named Teacher of the Year
Erica Sowders received the Clarenceville Teacher of the ...
Academic Excellence
CEHHS Alum named Teacher of the Year
Erica Sowders received the Clarenceville Teacher of the ...
Campus Life
CEHHS Alum named Teacher of the Year
Erica Sowders received the Clarenceville Teacher of the ...
Experiential Learning
CEHHS Alum named Teacher of the Year
Erica Sowders received the Clarenceville Teacher of the ...
Experiential Learning
CEHHS Alum named Teacher of the Year
Erica Sowders received the Clarenceville Teacher of the ...
Code
HTML
<section class="news-featured">
<div class="grid-xxl">
<h1>News (/news/)</h1>
<div class="news-grid">
<div class="row">
<a class="card large-feature" href="#">
<div class="card-details">
<div class="news-overline">College of Business</div>
<h2 class="news-headline">CEHHS Alum named Teacher of the Year</h2>
<div class="news-dek">
Erica Sowders received the Clarenceville Teacher of the ...
</div>
</div>
</a>
<a class="card feature" href="#">
<img
src="https://picsum.photos/id/99/461/270"
class="card-image"
alt="image alt"
/>
<div class="card-details">
<div class="news-overline">Academic Excellence</div>
<h2 class="news-headline">CEHHS Alum named Teacher of the Year</h2>
<div class="news-dek">
Erica Sowders received the Clarenceville Teacher of the ...
</div>
</div>
</a>
</div>
<div class="row">
<a class="card feature" href="#">
<img
src="https://picsum.photos/id/101/461/270"
class="card-image"
alt="image alt"
/>
<div class="card-details">
<div class="news-overline">Campus Life</div>
<h2 class="news-headline">CEHHS Alum named Teacher of the Year</h2>
<div class="news-dek">
Erica Sowders received the Clarenceville Teacher of the ...
</div>
</div>
</a>
<a class="card feature" href="#">
<img
src="https://picsum.photos/id/102/461/270"
class="card-image"
alt="image alt"
/>
<div class="card-details">
<div class="news-overline">Experiential Learning</div>
<h2 class="news-headline">CEHHS Alum named Teacher of the Year</h2>
<div class="news-dek">
Erica Sowders received the Clarenceville Teacher of the ...
</div>
</div>
</a>
<a class="card feature" href="#">
<img
src="https://picsum.photos/id/106/461/270"
class="card-image"
alt="image alt"
/>
<div class="card-details">
<div class="news-overline">Experiential Learning</div>
<h2 class="news-headline">CEHHS Alum named Teacher of the Year</h2>
<div class="news-dek">
Erica Sowders received the Clarenceville Teacher of the ...
</div>
</div>
</a>
</div>
</div>
</div>
</section>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
CSS
.news-featured {
margin-bottom: 3.75rem;
}
.news-featured .news-grid .row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 1.875rem;
}
@media screen and (max-width: 39.9375em) {
.news-featured .news-grid .row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 0;
}
}
.news-featured .news-grid .row a.card {
background-color: #fafafa;
-webkit-box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
color: #131516;
cursor: pointer;
display: block;
overflow: hidden;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
@media screen and (max-width: 39.9375em) {
.news-featured .news-grid .row a.card {
margin-bottom: 1.875rem;
}
}
.news-featured .news-grid .row a.card:hover,
.news-featured .news-grid .row a.card:focus {
-webkit-box-shadow: 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12),
0 5px 6px -3px rgba(0, 0, 0, 0.2);
box-shadow: 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12),
0 5px 6px -3px rgba(0, 0, 0, 0.2);
color: #1c5184;
text-decoration: none;
}
.news-featured .news-grid .row a.card:hover .card-head,
.news-featured .news-grid .row a.card:focus .card-head {
color: #1c5184;
}
.news-featured .news-grid .row .news-overline {
font-family: 'Montserrat', sans-serif;
font-size: 0.875rem;
font-weight: 500;
line-height: 1.14;
letter-spacing: 1.2px;
margin-bottom: 0.3125rem;
position: relative;
text-transform: uppercase;
}
.news-featured .news-grid .row .news-overline:after {
background-color: #00274c;
content: '';
display: block;
position: absolute;
top: -35px;
height: 5px;
left: 0;
width: 150px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
z-index: 1;
}
.news-featured .news-grid .row a.card:hover .news-overline:after,
.news-featured .news-grid .row a.card:focus .news-overline:after {
left: -30px;
width: 130%;
}
.news-featured .news-grid .row .news-headline {
border: 0;
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
font-weight: bold;
line-height: 1.25;
letter-spacing: 0.19px;
margin: 0 0 0.625rem 0;
}
.news-featured .news-grid .row .card-image {
width: 100%;
}
.news-featured .news-grid .row .card-head {
border: 0;
color: rgba(0, 0, 0, 0.87);
font-family: 'Montserrat', sans-serif;
font-size: 1.25rem;
font-weight: bold;
font-style: normal;
font-stretch: normal;
line-height: normal;
letter-spacing: 0.26px;
margin: 0 0 1rem;
}
.news-featured .news-grid .row .card-details {
padding: 1.875rem;
}
.news-featured .news-grid .row .card-details p {
color: rgba(0, 0, 0, 0.87);
}
.news-featured .news-grid .feature {
width: 32%;
}
@media screen and (max-width: 39.9375em) {
.news-featured .news-grid .feature {
width: 100%;
}
}
.news-featured .news-grid a.large-feature.card {
color: #fafafa;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 66%;
background-image: url('https://picsum.photos/id/112/920/510');
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
@media screen and (max-width: 39.9375em) {
.news-featured .news-grid a.large-feature.card {
height: 400px;
width: 100%;
}
}
.news-featured .news-grid a.large-feature.card:hover,
.news-featured .news-grid a.large-feature.card:focus {
color: #ffcb05;
}
.news-featured .news-grid a.large-feature.card:hover .news-overline:after,
.news-featured .news-grid a.large-feature.card:focus .news-overline:after {
left: 0;
width: 100%;
}
.news-featured .news-grid a.large-feature.card:after {
display: block;
position: absolute;
background-image: -webkit-gradient(
linear,
left top,
left bottom,
from(transparent),
to(#131516)
);
background-image: linear-gradient(to bottom, transparent 0%, #131516 100%);
margin-top: 0;
height: 100%;
width: 100%;
content: '';
}
.news-featured .news-grid a.large-feature.card .news-overline:after {
background-color: #ffcb05;
content: '';
display: block;
position: absolute;
top: -35px;
height: 5px;
left: 0;
width: 150px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
z-index: 1;
}
.news-featured .news-grid a.large-feature.card .card-details {
-ms-flex-item-align: end;
align-self: flex-end;
z-index: 1;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176