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
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
.event {
margin: 0 auto;
max-width: 700px;
}
.event-header {
line-height: normal;
height: 450px;
max-width: 700px;
}
.event-image {
height: 300px;
width: 100%;
max-width: 700px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: #D4D4D4;
}
.event-date {
height: 150px;
width: 150px;
padding-left: 20px;
float: left;
background-color: #2d4d88;
color: white;
}
.event-date-day {
font-size: 64px;
font-weight: bold;
}
.event-date-month {
font-size: 26px;
}
/* On September, November, December */
.event-date-month[data-month-index="8"],
.event-date-month[data-month-index="10"],
.event-date-month[data-month-index="11"] {
font-size: 23px;
}
.event-info {
float: left;
width: calc(100% - 150px);
max-width: 550px;
padding: 20px;
font-size: 36px;
height: 150px;
background-color: #EEEEEE;
color: #2d4d88;
}
.event-time {
font-size: 16px;
}
.event-text {
width: 100%;
max-width: 700px;
min-height: 150px;
margin: 10px 0;
color: #2d4d88;
background-color: #EEE;
}
.event-text-header {
font-size: 19px;
border-bottom: 1px solid #D4D4D4;
padding: 10px 20px;
}
.event-text-content {
padding: 20px;
color: #505050;
}
.event-error {
padding: 50px 0;
}
@media (max-width: 520px) {
.event-header {
height: 350px;
}
.event-image {
height: 200px;
}
.event-date {
display: none;
}
.event-info {
border-top: 5px solid #2d4d88;
width: 100%;
}
}