Newer
Older
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
@import "../helpers/mixins";
@import "../helpers/variables";
@import "../helpers/functions";
//
// Events
// --------------------------------------------------
//## Events grid.
.view-events {
.row {
display: flex;
margin-bottom: 40px;
@media (max-width: 768px) {
display: block;
}
}
.news-row {
display: flex;
color: $gray-6;
@media (max-width: 768px) {
display: block;
}
.inner-news-grid {
border: #979797 solid 1px;
flex: 1;
background: $white;
@media (max-width: 768px) {
flex: none;
margin-bottom: 20px
}
}
.views-field-field-evt-date-range {
padding: 10px;
background: #841F5D;
color: $white;
text-transform: uppercase;
}
.views-field-title {
padding: 0 10px 10px;
font-size: 18px;
a {
color: $gray-6;
}
}
.views-field-field-evt-location-2 {
padding: 10px 10px 3px;
color: #26686D;
font-weight: 700;
}
}
}
// --------------------------------------------------
//## Event.
article.event {
margin-bottom: 16px;
}
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
.news-cont {
padding-left: 0;
.field--name-body {
margin: 20px 0 40px;
}
}
.news-date {
text-transform: uppercase;
font-weight: 700;
font-size: $font-size-h6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.news-title {
text-transform: capitalize;
}
.evt-header {
background: #EFEFEF;
padding: 15px 5px 10px;
width: 100%;
float: left;
margin-bottom: 30px;
}
.evt-icon {
float: left;
margin-right: 10px;
}
.evt-cal {
span {
float: right;
padding: 20px 0;
@media (max-width: 768px) {
float: none;
}
}
@media (max-width: 768px) {
text-align: center;
margin-bottom: 5px;
}
}
// --------------------------------------------------
//## Hides core h1 title in lieu of News Stories built-in h1 title.
.page-node-type-news-story .page-header {
display: none;
}