forked from palabhi017/DeskTime-Clome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.css
125 lines (104 loc) · 2 KB
/
projects.css
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body{
font-family: sans-serif;
}
/*
#p-utility{
width: 95%;
margin: auto;
} */
#projects-heading{
display: flex;
padding: 0px 20px;
justify-content: space-between;
}
#projects-heading>div{
display: flex;
gap: 10px;
}
#projects-heading>div>button{
margin: auto;
padding: 10px;
}
#new-project-btn{
background-color: #4EA819;
color: white;
border: 1px solid black;
border-radius: 3px;
cursor: pointer;
}
#new-project-btn:hover{
background-color: #30531c;
}
#new-project-btn~button{
background-color: white;
border: 1px solid black;
border-radius: 3px;
}
#project-stats{
display: grid;
gap: 20px;
margin: auto;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(1,120px);
}
.vertical-bar{
width: 5px;
height: 100%;
background-color: gray;
border-radius: 10px;
}
#project-stats>div{
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
gap: 20px;
padding: 20px;
display: flex;
}
#project-stats>div h1{
margin-top:-20px;
}
#your-projects{
padding: 8px;
margin: auto;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
margin-top: 40px;
}
#filter-projects{
display: grid;
margin: auto;
grid-template-columns: repeat(4,280px);
grid-template-rows: repeat(1,100px);
}
#filter-projects>div{
/* border: 1px solid red; */
padding: 0px 20px;
}
#filter-projects>div>h4{
font-size: 14px;
color: gray;
}
#filter-projects>div>input{
padding: 8px;
}
#filter-projects>div>input::placeholder{
color: gray;
font-size: 12px;
}
#all-projects>div{
display: flex;
/* border: 1px solid red; */
height: 50px;
align-items: center;
justify-content: space-between;
/* border: 1px solid red; */
}
#fdiv{
display: flex;
justify-content: flex-start;
gap: 20px;
width: 12%;
}
#sdiv{
display: flex;
justify-content: flex-start;
gap: 5px;
}