-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (110 loc) · 2.5 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
127
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('./asserts/inside.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
user-select: none;
}
.container {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
color: #333;
position: relative;
max-width: 400px;
width: 90%;
min-height: 400px;
margin: 0 auto;
margin-top: 100px;
}
h1 {
color: #1f91b7d6;
margin-bottom: 50px;
}
.input-container {
margin: 20px 0;
}
input[type="text"] {
padding: 10px;
width: 100%;
border: none;
border-radius: 5px;
outline: none;
font-size: 16px;
position: relative;
right: 9px;
cursor: pointer;
}
button#addTask {
padding: 10px 20px;
background: linear-gradient(to right, #007BFF, #00C9A7);
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 16px;
margin-top: 40px;
}
button#addTask:hover {
background: linear-gradient(to right, #0056b3, #00a389);
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: linear-gradient(to right, #ff9999, #ffcc99);
padding: 10px;
margin: 10px 0;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s;
font-size: 18px;
color: #333;
}
li:hover {
background: linear-gradient(to right, #ff8080, #ffaa80);
}
.task-actions {
display: flex;
}
.edit-button, .delete-button {
background: linear-gradient(to right, #ff6347, #ffaa80);
color: #fff;
border: none;
border-radius: 5px;
padding: 5px 10px;
margin-left: 5px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 14px;
}
.edit-button:hover, .delete-button:hover {
background: linear-gradient(to right, #d9534f, #ff8c7a);
}
.edit-input {
border: 1px solid #007BFF;
border-radius: 5px;
padding: 5px;
margin-right: 10px;
font-size: 16px;
}
.gmail{
position: absolute;
font-size: 20px;
text-decoration: none;
margin-left: 1374px;
display: inline;
margin-top: 100px;
color: #0015ff;
cursor: grab;
}