-
Notifications
You must be signed in to change notification settings - Fork 0
/
PickerV2.css
124 lines (105 loc) · 1.82 KB
/
PickerV2.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
.container {
margin-top: 400px;
}
.datepicker {
position: relative;
padding: 1rem 2rem;
font-size: 1.5rem;
}
.close {
position: absolute;
right: 5%;
margin: auto;
}
.calendar {
position: absolute;
z-index: 9999;
transform: translateY(-100%);
width: 300px;
height: 280px;
box-shadow: 0 0 3em rgba(0, 0, 0, 0.15);
font-weight: 500;
font-size: larger;
}
.calendar-inner {
width: 100%;
height: 100%;
}
.calendar-top {
text-align: center;
}
.calendar-month {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
padding: 10px;
color: #ffffff;
background-color: rgba(50, 98, 174, 0.8)
}
.calendar-year {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
padding: 10px;
color: #ffffff;
background-color: rgb(50, 98, 174)
}
.calendar span {
margin-left: 5px;
margin-right: 5px;
}
.i .fa .fa-chevron-left {
margin-right: 5px;
}
.i .fa .fa-chevron-righ {
margin-left: 5px;
}
.calendar-days {
display: grid;
list-style-type: none;
grid-template-columns: repeat(7, 1fr);
}
.calendar-label {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
margin-left: 0 auto;
margin-right: 0 auto;
}
.calendar-label > li {
list-style-type: none;
background-color: rgb(44, 69, 116);
color: #fff;
}
.calendar-content {
}
.day {
background-color: rgb(255, 255, 255);
text-align: center;
padding: 5px;
}
.day:hover {
opacity: 2.5;
cursor: pointer;
/* font-weight: 900; */
border-radius: 50%;
}
.day-empty {
}
.choosen-date {
text-align: right;
margin-right: 5%;
}
.close-button {
margin-left: auto;
color: #ffffff;
background-color: rgba(50, 98, 174, 0.8);
padding: 15px;
position: relative;
}
.close-button > * {
right: 5%;
position: absolute;
}