_events.scss
1.57 KB
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
.broker-event {
display: flex;
width: 100%;
align-items: center;
margin-top:1.375rem;
.be-info {
flex:1;
align-items: center;
padding-left:1rem;
font-size: 1rem;
padding-right:2rem;
.be-title {
font-family: "Helvetica-Bold";
}
}
.be-btn {
a {
width: 254px;
padding:1.1875rem;
text-align: center;
font-family: "Helvetica";
border: 0;
background:#009ADE;
font-size: 1.25rem;
&.btn-disabled {
background:#F2F2F2;
pointer-events: none;
color:#949598;
}
&:hover {
background:#7FCCEE;
text-decoration: none;
}
&:before {
display: none;
}
}
}
.be-cal {
text-align: center;
border:6px solid #76bc21;
border-radius: 6px;
width: 92px;
height: 92px;
display: flex;
flex-direction: column;
p {
display: none;
}
.be-cal-month {
text-transform: uppercase;
color:#76bc21;
font-family: "Helvetica-Bold";
}
.be-cal-day {
border-top:6px solid #76bc21;
font-size: 40px;
font-family: "Helvetica-Bold";
flex: 1;
display: inline-flex;
align-items: center;
justify-content: center;
color:#76bc21;
}
}
}