-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (113 loc) · 1.91 KB
/
style.css
File metadata and controls
130 lines (113 loc) · 1.91 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
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
128
129
130
* {
font-family: "Cascadia Code", sans-serif;
font-size: medium;
}
body {
display: flex;
justify-content: center;
background-color: #0d0d26;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #b6c3e7;
width: 80%;
min-height: 90vh;
padding: 2rem;
}
main {
flex: 1;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.lista {
width: 70%;
gap: -1px;
}
/* En desuso hasta el update
footer {
display: flex;
text-align: center;
padding: 1rem;
gap: 0.8rem;
} */
.lista {
display: flex;
flex-direction: column;
margin-top: 1rem;
}
.alert-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
display: flex;
justify-content: center;
align-items: center;
}
.alert-box {
background-color: white;
padding: 20px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
.alert-image {
width: 50px;
height: 50px;
margin-bottom: 10px;
margin-right: 10px;
}
button {
margin-top: 15px;
padding: 10px 20px;
background-color: #3498db;
color: white;
border: none;
cursor: pointer;
border-radius: 3px;
}
button:hover {
background-color: #2980b9;
}
input {
margin: 1rem;
padding: 1rem;
border: 2px solid #333;
border-radius: 0.6rem;
}
.ingreso {
width: 50rem;
color: rgb(4, 4, 158);
font-weight: 700;
background-color: #b6c3e7;
}
.ingreso:focus {
outline: none;
animation: fondo 0.3s ease-in-out;
background-color: #a5b1d1;
}
input::placeholder {
color: #008886;
}
.contenedor_tarea {
padding: 0;
border: 1px solid #a0afd8;
}
.sombreado {
box-shadow: 10px 0 10px -5px rgba(255, 0, 255, 0.5),
-10px 0 10px -5px rgba(255, 0, 255, 0.5);
}
@keyframes fondo {
0% {
background-color: #b6c3e7;
}
100% {
background-color: #a5b1d1;
}
}