summaryrefslogtreecommitdiff
path: root/Static/Css/userInfo.css
blob: ceda91ac928b3d1e7174c38af35b7b0945d8cda0 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

.jobsListElem {
    background-color: rgb(243, 201, 201);
    border-radius:     10px;
    transition:        all 0.1s ease-in-out;
}

.jobsListElem:hover {
    cursor:            pointer;
    background-color: #f5a4a4;
}

.jobsListElem i{
    background-color: transparent !important;
    color:           #991e1e !important;
    width:            auto !important;
    height:           auto !important;
    line-height:      normal !important;
    font-size:        var(--fontSizeSmall) !important;
    border-radius:    0px !important;
    margin-left:      0.5em;
}

#mainUserInfo form {
    display:         flex;
    flex-direction:  column;
    justify-content: space-around;
    gap:             1em;
    padding:         1.5% 5%;
    align-items:     center;
}

#mainUserInfo label {
    width: 70%;
}

#mainUserInfo input[type="text"] {
    width: inherit;
}

#mainUserInfo button {
    padding: 0.13em 0.2em;
}

#userJob {
    justify-content: center;
    width:           70%;
}

#userJob div {
    width:           inherit;
    font-size:       calc(36px / 2.5);
    height:          2.5em;
    line-height:     2.5em;
    display:         flex;
    justify-content: space-around;
    align-items:     center;
    border:          var(--inputBorder);
    border-radius:   0px 4px 4px 0px;
}

#jobsList {
    align-items: center;
}

#jobsListGrid {
    display:               grid;
    min-height:            2em;
    line-height:           2em;
    padding:               1px 2px;
    grid-template-columns: repeat(3, 1fr);
    border:                var(--inputBorder);
    border-radius:         0px 4px 4px 0px;
    width:                 inherit;
    gap:                   0.5em;
}

@media screen and (max-width: 768px) {
    #jobsListGrid {
        grid-template-columns: 1fr;
    }

    #userJob div span{
        display: none;
    }
}