buttons.module.scss 1.08 KB
Newer Older
1
2
3
4
.homeBtn {
    top: 10px;
    right: 10px;

Kim, Subin's avatar
Kim, Subin committed
5
6
7
8
9
10
    &:hover {
        & .icon {
            color: #fff
        }
    }

11
12
13
14
15
    & .icon {
        color: crimson;
    }
}

Kim, Subin's avatar
Kim, Subin committed
16
17
18
.icon {
    color: crimson;
    font-size: 2.7em;
Kim, Subin's avatar
Kim, Subin committed
19
    cursor: pointer;
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
}

.backBtn {
    top: 4px;
    right: 10px;

    & .icon {
        font-size: 2.3em;
    }

    &:hover, &:visited {
        background-color: #fff;

        & .icon {
            color: crimson;
        }
    }
Kim, Subin's avatar
Kim, Subin committed
37
38
39
40
41
}

.disabledBtn:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
Kim, Subin's avatar
Kim, Subin committed
42
43
44
}

.calendar {
Kim, Subin's avatar
Kim, Subin committed
45
    cursor: pointer;
Kim, Subin's avatar
Kim, Subin committed
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
    font-size: 0.435em;
    width: 7em;
    height: 7.2em;
    border-radius: 0.4em;
    box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
    overflow: hidden;

    & * {
        display: block;
        width: 100%;
    }

    & strong {
        padding: 0.4em 0;
        background-color: crimson;
        box-shadow: 0 2px 0 crimson;
    }

    & span {
        font-size: 3em;
        letter-spacing: -0.05em;
        padding-top: 1em;
        font-family: "Plex-Medi";
    }
70
}