-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_vanilla_calendar.css
127 lines (111 loc) · 2.75 KB
/
_vanilla_calendar.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
body {
--vcal-bg-color: var(--color-white);
--vcal-border-radius: 0;
--vcal-border-color: var(--primary-background);
--vcal-selected-bg-color: var(--color-light-green);
}
#v-cal *, #v-cal *:before, #v-cal *:after {
box-sizing: border-box;
}
body#recharge-novum #recharge-te #v-cal {
margin: 0 auto;
overflow: hidden;
width: 100%;
}
body#recharge-novum #recharge-te #v-cal .vcal-btn {
-moz-user-select: none;
-ms-user-select: none;
-webkit-appearance: button;
background: none;
border: none;
margin-bottom: 0px;
color: var(--color-thin-blue);
cursor: pointer;
font: inherit;
line-height: normal;
min-width: 27px;
outline: none;
overflow: visible;
padding: 0;
text-align: center;
max-width: 40px;
}
body#recharge-novum #recharge-te #v-cal .vcal-header {
align-items: center;
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
body#recharge-novum #recharge-te #v-cal .vcal-header svg {
fill: var(--vcal-selected-bg-color);
}
body#recharge-novum #recharge-te #v-cal .vcal-header__label {
font-weight: 600;
text-align: center;
width: 100%;
font-size: 20px;
}
body#recharge-novum #recharge-te #v-cal .vcal-week {
display: flex;
flex-wrap: wrap;
}
body#recharge-novum #recharge-te #next_charge_date {
display: none;
}
body#recharge-novum #recharge-te #v-cal .vcal-week span {
flex-direction: column;
flex: 0 0 14.28%;
font-size: 17px;
font-weight: 600;
max-width: 14.28%;
padding: 8px 5px;
text-align: center;
text-transform: uppercase;
}
body#recharge-novum #recharge-te #v-cal .vcal-body {
background-color: rgba(var(--vcal-selected-bg-color), 0.3);
display: flex;
flex-wrap: wrap;
}
body#recharge-novum #recharge-te #v-cal .vcal-date {
align-items: center;
background-color: var(--color-white);
border-radius: var(--vcal-border-radius);
display: flex;
flex-direction: column;
flex: 0 0 14.28%;
max-width: 14.28%;
padding: 5px;
min-height: 37px;
border-radius: 50%;
}
body#recharge-novum #recharge-te #v-cal .vcal-date--active {
cursor: pointer;
}
body#recharge-novum #recharge-te #v-cal .vcal-date--today {
background-color: var(--vcal-selected-bg-color);
color: var(--vcal-bg-color);
}
body#recharge-novum #recharge-te #v-cal .vcal-date--selected {
position: relative;
}
body#recharge-novum #recharge-te #v-cal .vcal-date--selected span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: var(--vcal-selected-bg-color);
color: var(--vcal-bg-color);
border-radius: 50%;
width: 36px;
height: 36px;
display: block;
text-align: center;
line-height: 36px;
font-weight: 600;
}
body#recharge-novum #recharge-te #v-cal .vcal-date--disabled {
border-radius: 0;
cursor: not-allowed;
opacity: 0.5;
}