-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents-only.css
130 lines (120 loc) · 2.25 KB
/
events-only.css
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
/*
- Currently activated CSS for board.html
*/
/*font declration*/
@font-face{
font-family: "DINOT-Bold";
src: url(DINOT-Bold.otf);
}
@font-face{
font-family: "DINOT-BoldItalic";
src: url(DINOT-BoldItalic.otf);
}
@font-face{
font-family: "DINOT-CondMediIta";
src: url(DINOT-CondMediIta.otf);
}
@font-face{
font-family: "DINOT-Italic";
src: url(DINOT-Italic.otf);
}
@font-face{
font-family: "DINOT-LightItalic";
src: url(DINOT-LightItalic.otf);
}
@font-face{
font-family: "DINOT";
src: url(DINOT.otf);
}
html {
font-family: "DINOT-Bold", "DINOT-BoldItalic", "DINOT-CondMediIta", "DINOT-Italic", "DINOT-LightItalic", "DINOT";
}
body {
overflow:hidden;
background-color: #FFFFFF;
font-family: "DINOT";
}
.row .col{
padding:0;
}
/*events today*/
.events {
overflow-y: hidden;
height: 99vh !important;
}
.events .collection.with-header .collection-header{
transform: skewX(-20deg);
background-color:#000000;
font-family: "DINOT-Bold";
font-size:40px;
width:100%;
margin-left:2vh;
}
.events.featured .collection.with-header .collection-header{
background-color:#ED037C;
font-family: "DINOT-Bold";
}
.events .nav-wrapper a.brand-logo{
color:#FFFFFF;
}
.events .collection{
margin:0px;
border:0px;
}
.row .events.col{
padding:0;
}
.eventItems > .collection{
height: 90vh;
overflow-y:auto;
}
.collection-header{
font-size:1rem;
}
.collection-item > p{
margin-bottom:0px;
}
.collection-item > span{
font-size:2.5rem;
line-height:2.5rem;
font-family: "DINOT-Bold";
}
.collection-item > p.date{
font-size:2.0rem;
line-height:2.0rem;
}
.collection-item > p.location{
float:right;
font-size:1.9rem;
line-height:1.9rem;
font-style:italic;
}
.collection-item p{
font-size:1.4rem;
line-height:1.4rem;
}
.collection-item > *{
font-size:1.4rem;
line-height:1.4rem;
}
/*featured events*/
.events.featured {
overflow-y: hidden;
height: 99vh !important;
}
.events.featured .eventItems > .collection{
height: 90vh;
overflow-y:auto;
}
.events img{
height:77vh;
margin-left:3vh;
margin-right:3vh;
float:left;
}
.events span.clear { clear: left; display: block; }
/*//hide scroll bar*/
::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}