-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-task.css
More file actions
80 lines (75 loc) · 1.77 KB
/
add-task.css
File metadata and controls
80 lines (75 loc) · 1.77 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
@font-face {
font-family: iransans;
src: url("./Iranian\ Sans.ttf");
}
.add-task-content{
display: none;
justify-content: center;
flex-basis: 85%;
align-items: center;
}
.add-box{
display: flex;
background: #c1cfa130;
width: 50%;
justify-content: flex-start;
flex-flow: column;
border-radius: 2rem;
padding: 0.5rem;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
gap: 2rem;
}
.add-box-title{
padding: 0.5rem 0 0;
border-radius: 1rem;
font-size: 1.4rem;
align-self: center;
}
.add-box .form{
display: grid;
grid-template-columns: repeat(5,auto);
padding:1rem;
gap: 0.4rem;
}
.form label{
grid-column: 1/2;
font-size: 0.9rem;
padding: 0.4rem;
}
.form input,select{
grid-column: 2/6;
padding:0.5rem;
background: #dddddd3d;
border: none;
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
border-radius: 0.2rem;
font-family: iransans;
}
.form label::after{
content: " :";
}
.btn-submit-new-task{
padding: 0.5rem 1.5rem;
cursor: pointer;
grid-column: 2/5;
margin-top: 1rem;
background: rgb(13, 152, 46);
border: none;
border-radius: .5rem;
box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
color: white;
font-family: iransans;
}
.btn-submit-new-task:hover{
background: rgb(11, 118, 36);
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
@media (max-width: 600px) {
.add-box{
width: 95%;
}
.add-task-content{
flex-basis: 100%;
padding: 0.5rem;
}
}