blob: c9113df9f0792cd8cda237e3745305a78f1adefc (
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
87
88
89
90
|
/*
############################################################################
# #
# Description: CSS spécifique à la page de gestion de ses infos #
# #
############################################################################
*/
.jobsListElem {
border-radius: 10px;
background-color: rgb(243, 201, 201);
transition: all 0.1s ease-in-out;
}
.jobsListElem:hover {
cursor: pointer;
background-color: #f5a4a4;
}
.jobsListElem i{
width: auto !important;
height: auto !important;
line-height: normal !important;
border-radius: 0px !important;
font-size: var(--fontSizeSmall) !important;
color: #991e1e !important;
background-color: transparent !important;
}
#mainUserInfo form {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
gap: 1em;
padding: 1.5% 5%;
}
#mainUserInfo label {
width: 70%;
}
#mainUserInfo input[type="text"] {
width: 70%;
}
#mainUserInfo button {
padding: 0.13em 0.2em;
}
#userJob div {
width: 70%;
font-size: calc(36px / 2.5); /* Pour avoir la meme hauter qu'un input */
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 {
width: 70%;
display: grid;
gap: 0.5em;
grid-template-columns: repeat(3, 1fr);
min-height: 2em;
line-height: 2em;
padding: 2px;
border: var(--inputBorder);
border-radius: 0px 4px 4px 0px;
font-size: var(--fontSizeSmall);
}
@media screen and (max-width: 768px) {
#jobsListGrid {
grid-template-columns: 1fr;
}
#userJob div span{
display: none;
}
}
|