-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (119 loc) · 1.8 KB
/
style.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
126
*,*::after,*::before{
padding: 0;
margin:0px;
box-sizing: border-box;
}
body{
background-color: #3D434B;
}
#demo{
margin: 100px 100px;
border-radius: 20px;
max-width: 2000px;
background-color: #2B2F33;
}
.d-flex{
display: flex;
}
.flex-direction{
flex-direction: column;
}
.aling-items-start{
align-items:flex-start;
}
.aling-items{
align-items: center;
}
.justify-content{
justify-content: center;
}
li{
padding: 10px;
width: 100%;
font-size: 22px;
margin: 10px;
}
i{
margin:0px 10px;
}
#logo{
background-color: #2B2F33;
width: 30%;
padding: 20px;
}
ul{
list-style: none;
color: white;
text-transform: uppercase;
}
.dashboard{
text-align: center;
font-size: 60px;
color:white;
display: flex;
justify-content: center;
}
.bx-task{
padding: 20px 10px;
}
#task{
background-color: #212529;
width: 70%;
padding: 20px;
}
.searech{
background-color: #2B2F33;
padding:5px;
border-radius: 10px;
}
.justify-content-between{
justify-content: space-between;
}
i{
color: #737679;
font-size: 25px;
}
input{
width:100%;
background: #2B2F33;
height: 60px;
border: none;
font-size: 20px;
color: #929598;
padding: 5px;
text-transform: capitalize;
}
input:focus{
outline: none;
}
.search::after{
display: block;
padding: 5px;
content: '';
width: 50px;
height: 50px;
background: url(../../download.jpg);
border-radius: 50%;
}
.My-task{
background-color: #2B2F33;
border-radius: 10px;
width: 100%;
height: 500px;
padding: 10px;
margin: 20px 0px;
}
h1{
text-align: center;
color: #FFFFFF;
text-transform: capitalize;
}
button{
background: none;
border: none;
}
.My-task>div{
overflow-x:hidden;
overflow-y: scroll;
height: 90%;
}