-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (53 loc) · 1.29 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
html {
height: 100%;
width: 100%;
background-image: url('https://img.freepik.com/free-photo/tiny-blooming-twig-pink_23-2147699686.jpg?t=st=1720172117~exp=1720175717~hmac=61718ad3dd5bc4fb311362975509b76f5414b9e50bb065c93d4699f447710efd&w=740');
background-size: cover;
background-repeat: yes;
background-position: center;
height: 60vh;
margin: 0;
font-family: Arial, sans-serif;
}
input[type="text"] {
width: 100%;
max-width: 300px; /* Adjust as needed */
padding: 10px;
border: 1px solid #000000;
border-radius: 15px;
font-size: 14px;
box-shadow: inset 0 1px 3px rgb(0, 0, 0, 0.1);
transition: border-color 0.3s, box-shadow 0.3s;
margin-bottom: 10px;
}
input[type="text"]:focus {
border-color: #0070f3;
box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
outline: none;
}
/* Styles for the button */
button {
padding: 10px 20px;
border: none;
border-radius: 25px;
background-color: #d14ddb;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #ff009d;
}
/* Styles for the todos container */
#todos {
margin-top: 20px;
}
/* Styles for individual todo items */
.todo-item {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
margin-bottom: 10px;
background-color: #f9f9f9;
}