-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnouvelleTache.css
67 lines (62 loc) · 1.36 KB
/
nouvelleTache.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
body {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh;
background: linear-gradient(135deg, #cf9aff,#95c0ff);
}
img{
width: 45px;
height: 45px;
}
.box {
width: 100%;
max-width: 540px;
height: 400px;
background-color: #fff; /* Box background color */
margin: 100px auto 20px;
padding: 40px 30px 70px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border: 2px solid rgba(255, 255, 255, .2);
backdrop-filter: blur(9px);
color: #fff;
}
.box h2{
color: #002765;
display: flex;
align-items: center;
margin-bottom: 20px;
}
.add_task{
position: relative;
width: 100%;
height: 50px;
margin: 30px 0;
justify-content: center;
align-items: center;
}
.add_task input {
width: 100%;
justify-content: center;
height: 100%;
background: transparent;
border: none;
outline: none;
border: 2px solid rgba(7, 6, 6, 0.2);
border-radius: 40px;
font-size: 16px;
color: #241d1d;
padding: 20px 45px 20px 20px;
margin-bottom: 10px;
}
.add_task .submit_task{
width: 40%;
padding: 16px 50px;
background: linear-gradient(#9481fd,#571094);
color: #fff;
font-size: 16px;
cursor:pointer;
border-radius: 10px;
}