forked from Ayush1390/toDoList-Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (65 loc) · 1.41 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
body{
background: linear-gradient(to left,rgb(148, 148, 217),rgb(220, 84, 84));
font-family: 'Poppins', sans-serif;
}
.container{
width: 400px;
padding: 40px;
margin-left: 33%;
margin-top: 50px;
background-color: rgb(201, 170, 170);
background: linear-gradient(to right,rgb(148, 148, 217),rgb(220, 84, 84));
/* opacity: 60%; */
justify-self: center;
border: 1px solid rgb(15, 15, 15);
}
.heading{
display: flex;
justify-content: center;
margin-bottom: 60px;
font-weight: bolder;
justify-self: center;
}
.heading:hover{
cursor: pointer;
}
input{
justify-self: center;
width: 270px;
padding: 10px;
color: rgb(130, 82, 82);
border: 1px solid rgb(70, 70, 141);
outline: none;
font-size: 19px;
margin-right: 20px;
margin-bottom: 30px;
}
.inputs{
display: flex;
justify-content: center;
justify-self: center;
}
button{
width: 60px;
height: 41px;
background-color: rgb(4, 29, 29);
color: white;
outline: none;
border-radius: 2px;
font-size: 19px;
border: none;
cursor: pointer;
}
.text ul{
position: relative;
background-color: rgb(5, 31, 31);
padding: 7px;
text-align: left;
color: white;
font-size: 19px;
}
.text ul i{
cursor: pointer;
position: absolute;
right: 15px;
}