calender.module.scss 694 Bytes
Newer Older
1
2
.box {
    overflow: hidden;
Kim, Subin's avatar
Kim, Subin committed
3
4
    transform: translate3d(-420px, 0px, 0px);
    transition: all 0.6s ease 0s;
5
6
7
8
9
10
11
12
13
14
15
16

    & .yearmonth {
        position: relative;
        top: 0;
        width: 100%;
        font-size: 10px;
    }
}

.calender {
    right: 13px;
    font-size: 1.5em;
Kim, Subin's avatar
Kim, Subin committed
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
}

.datepicker {
    top: 92px;
    right: 12px;
    
    & .customBtn {
        &:hover {
            border-color: #FEDC00;
            background-color: #FEDC00;
            color: #000;
        }
    }
}

.cursor {
    cursor: pointer;
}

.selectDate {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
Kim, Subin's avatar
Kim, Subin committed
40
41
42
43
44
45
}

.selectatHome {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
46
}