aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/CalendarManager.scss
blob: 114e19a0e229b4abb9d7923e6201e703759e3dc8 (plain)
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
.calendar-interface{
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: 10px;

    .selected-doc-title{
        font-size: 1.4em;
    }

    .creation-type-container{
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        gap: 12px;

        .calendar-creation{
            cursor: pointer;
        }

        .calendar-creation-selected{
            border-bottom: 2px solid white;
        }
    }

    .choose-calendar-container{
        margin-top: 10px;
        align-self: center;
        width: 60%;
    }

    .description-container{
        margin-top: 10px;
        align-self: center;
        width: 60%;
    }

    .date-range-picker-container{
        margin-top: 5px;
        align-self: center;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .create-button-container{
        
        margin-top: 5px;
        align-self: center;

        .button-content{
            font-size: 1.2em;
            padding: 10px;
            border-radius: 5px;
            background-color: #EFF2F7;
        }
    }
}