News List
Example
6/19/2019
Staff contributions honored during annual awards
The Chancellor’s Staff Recognition Awards ceremony honored more than 120 staff members for their contributions to campus.
6/19/2019
Staff contributions honored during annual awards
The Chancellor’s Staff Recognition Awards ceremony honored more than 120 staff members for their contributions to campus.
6/19/2019
Staff contributions honored during annual awards
The Chancellor’s Staff Recognition Awards ceremony honored more than 120 staff members for their contributions to campus.
6/19/2019
Staff contributions honored during annual awards
The Chancellor’s Staff Recognition Awards ceremony honored more than 120 staff members for their contributions to campus.
Code
HTML
<div class="news-list">
<div class="news-item">
<div class="news-column">
<div class="news-overline">6/19/2019</div>
<h2 class="news-headline">
<a href="#link">Staff contributions honored during annual awards</a>
</h2>
<div class="news-dek">
The Chancellor’s Staff Recognition Awards ceremony honored more than 120
staff members for their contributions to campus.
</div>
</div>
<div class="news-image">
<a href="#link"
><img
src="https://picsum.photos/id/188/330/184"
alt="alternate text here"
/></a>
</div>
</div>
<div class="news-item">
<div class="news-column">
<div class="news-overline">6/19/2019</div>
<h2 class="news-headline">
<a href="#link">Staff contributions honored during annual awards</a>
</h2>
<div class="news-dek">
The Chancellor’s Staff Recognition Awards ceremony honored more than 120
staff members for their contributions to campus.
</div>
</div>
<div class="news-image">
<a href="#link"
><img
src="https://picsum.photos/id/200/330/184"
alt="alternate text here"
/></a>
</div>
</div>
<div class="news-item">
<div class="news-column">
<div class="news-overline">6/19/2019</div>
<h2 class="news-headline">
<a href="#link">Staff contributions honored during annual awards</a>
</h2>
<div class="news-dek">
The Chancellor’s Staff Recognition Awards ceremony honored more than 120
staff members for their contributions to campus.
</div>
</div>
<div class="news-image">
<a href="#link"
><img
src="https://picsum.photos/id/355/330/184"
alt="alternate text here"
/></a>
</div>
</div>
<div class="news-item">
<div class="news-column">
<div class="news-overline">6/19/2019</div>
<h2 class="news-headline">
<a href="#link">Staff contributions honored during annual awards</a>
</h2>
<div class="news-dek">
The Chancellor’s Staff Recognition Awards ceremony honored more than 120
staff members for their contributions to campus.
</div>
</div>
</div>
</div>
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
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
CSS
.news-list .news-item {
border-bottom: solid 1px rgba(19, 21, 22, 0.18);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 1.875rem;
padding-bottom: 1.875rem;
}
.news-list .news-item .news-column {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
width: auto;
}
.news-list .news-overline {
font-family: 'Montserrat', sans-serif;
font-size: 0.75rem;
font-weight: 500;
line-height: 1.14;
letter-spacing: 3.5px;
color: rgba(0, 39, 76, 0.9);
}
.news-list .news-headline {
border: 0;
margin: 0 0 0.625rem 0;
}
.news-list .news-headline a {
color: rgba(0, 0, 0, 0.87);
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
font-weight: bold;
line-height: 1.25;
letter-spacing: 0.19px;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.news-list .news-headline a:hover {
color: #1c5184;
text-decoration: none;
}
.news-list .news-image {
margin-bottom: 1rem;
}
.news-list .news-image:hover .news-headline a {
color: #1c5184;
text-decoration: none;
}
@media screen and (max-width: 39.9375em) {
.news-list .news-item .news-column {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
}
}
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
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