-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskmanagement.css
More file actions
94 lines (82 loc) · 1.84 KB
/
taskmanagement.css
File metadata and controls
94 lines (82 loc) · 1.84 KB
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
91
92
93
94
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.mainContainer {
width: 100%;
height: auto;
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.contentContainer {
width: 90%;
height: auto;
padding: 3rem;
background-color: rgba(15, 88, 206, 0.839);
display: flex;
justify-content: center;
align-items: center;
}
.innerContainer {
width: 90%;
height: auto;
padding: 2rem;
background-color: #fffefe;
display: flex;
flex-direction: row;
justify-content: start;
align-items: start;
column-gap: 1rem;
border-radius: 0.60rem;
}
.sidebar {
width: 15%;
height: auto;
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
row-gap: 1rem;
border-right: 1px solid rgb(232, 232, 232);
}
.input-wrapper {
width: fit-content;
height: auto;
background-color: antiquewhite;
display: flex;
flex-direction: row;
}
/*
.input-wrapper {
display: flex;
align-items: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
}
.input-wrapper .icon {
margin-right: 5px;
color: #888;
}
.input-wrapper input {
border: none;
outline: none;
flex: 1; /* Make the input take the remaining space */
} */
.search {
width: 130px;
}
.firstSide {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
row-gap: 1rem;
outline: none;
}