Skip to content

Commit beaf09b

Browse files
committed
Fix return design
1 parent 70d6735 commit beaf09b

7 files changed

Lines changed: 46 additions & 37 deletions

File tree

pages/cards.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ <h2 id="set-title">Cargando título...</h2>
1818
</div>
1919

2020
<button id="next-card">Next Card</button>
21-
<a id="back-set" class="btn" href="../pages/set.html">← 📋 Sets</a>
22-
<a id="again" class="btn" href="#" onclick="location.reload(); return false;">🔄 Again</a>
21+
<a id="again" class="btn" href="#" onclick="location.reload(); return false;">Again</a>
22+
<a id="back-set" class="btn" href="../pages/set.html">← Sets</a>
2323
</div>
2424
</main>
2525

styles/cards.css

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
2-
font-family: Arial, sans-serif;
3-
background: #f0f2f5;
2+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3+
background: #fefefe;
44
color: #333;
55
margin: 0;
66
height: 100vh;
@@ -42,7 +42,7 @@ body {
4242
height: 100%;
4343
backface-visibility: hidden;
4444
border-radius: 12px;
45-
box-shadow: 0 6px 14px rgba(0,0,0,0.15);
45+
box-shadow: 0 6px 14px rgba(0,0,0,0.3);
4646
display: flex;
4747
justify-content: center;
4848
align-items: center;
@@ -69,15 +69,14 @@ body {
6969
color: white;
7070
border: none;
7171
border-radius: 10px;
72-
padding: 14px 28px;
72+
padding: 10px 15px;
7373
font-size: 1.2em;
7474
cursor: pointer;
7575
transition: background 0.3s ease, transform 0.2s ease;
7676
}
7777

7878
#next-card:hover {
79-
background: #45a049;
80-
transform: scale(1.05);
79+
background: #3d9f42;
8180
}
8281

8382
#next-card:disabled {
@@ -87,17 +86,19 @@ body {
8786

8887
#back-set {
8988
text-decoration: none;
90-
background: #007bff;
89+
background: #000000;
9190
color: #fff;
92-
padding: 12px 20px;
91+
border: 1px solid #000000;
92+
padding: 8px 15px;
9393
border-radius: 10px;
94-
font-size: 1em;
94+
font-size: 1.2em;
9595
transition: background 0.3s ease, transform 0.2s ease;
9696
}
9797

9898
#back-set:hover {
99-
background: #0056b3;
100-
transform: scale(1.05);
99+
background: #ffffff;
100+
color: #000000;
101+
border: 1px solid #000000;
101102
}
102103

103104
#back-set:active {
@@ -108,9 +109,9 @@ body {
108109
text-decoration: none;
109110
background: #ff9800;
110111
color: #fff;
111-
padding: 12px 20px;
112+
padding: 8px 15px;
112113
border-radius: 10px;
113-
font-size: 1em;
114+
font-size: 1.2em;
114115
transition: background 0.3s ease, transform 0.2s ease;
115116
}
116117

styles/create-set.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
22
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3-
background: #f5f7fa;
3+
background: #fefefe;
44
margin: 0;
55
padding: 20px;
66
color: #333;
@@ -77,8 +77,8 @@ h2 {
7777
margin: 20px auto;
7878
padding: 5px 10px;
7979
font-size: 1em;
80-
background-color: #007bff;
81-
border: 2px solid #007bff;
80+
background-color: #000000;
81+
border: 2px solid #000000;
8282
color: #fff;
8383
border-radius: 8px;
8484
cursor: pointer;
@@ -88,5 +88,5 @@ h2 {
8888
#back-menu:hover {
8989
background-color: #ffffff;
9090
color: #000;
91-
border: 2px solid #007bff;
91+
border: 2px solid #000000;
9292
}

styles/edit-set.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
22
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3-
background: #eef2f7;
3+
background: #fefefe;
44
margin: 0;
55
padding: 20px;
66
color: #333;
@@ -12,7 +12,7 @@ body {
1212
background: #fff;
1313
border-radius: 12px;
1414
padding: 30px;
15-
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
15+
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
1616
text-align: center;
1717
}
1818

@@ -103,8 +103,8 @@ button {
103103
margin: 10px auto;
104104
padding: 5px 10px;
105105
font-size: 1em;
106-
background-color: #007bff;
107-
border: 2px solid #007bff;
106+
background-color: #000000;
107+
border: 2px solid #000000;
108108
color: #fff;
109109
border-radius: 8px;
110110
cursor: pointer;
@@ -114,6 +114,6 @@ button {
114114
#back-sets:hover {
115115
background-color: #ffffff;
116116
color: #000;
117-
border: 2px solid #007bff;
117+
border: 2px solid #000000;
118118
}
119119

styles/login.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@ h2 {
2929
a {
3030
/* Minimalista */
3131
text-decoration: none;
32-
color: #007bff;
32+
color: #ffffff;
3333
font-size: 1.1em;
34-
border: 2px solid #007bff;
34+
border: 2px solid #000000;
3535
padding: 5px 8px;
3636
border-radius: 5px;
3737
transition: background-color 0.3s, color 0.3s;
38-
background-color: #fefefe;
38+
background-color: #000000;
3939
visibility: hidden;
4040
}
4141

4242
a:hover {
43-
background-color: #55a7ff;
44-
border: 2px solid #55a7ff;
45-
color: #fefefe;
43+
background-color: #ffffff;
44+
border: 2px solid #000000;
45+
color: #000000;
4646
}
4747

4848
/* Botón */

styles/menu.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,14 @@ body {
6464
color: #686868;
6565
}
6666

67+
#logout {
68+
background: #000000;
69+
border: 2px solid #000000;
70+
color: #ffffff;
71+
}
72+
6773
#logout:hover{
6874
background: #ffffff;
6975
color: #000;
76+
border: 2px solid #000000;
7077
}

styles/set.css

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
22
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3-
background: #eef2f7;
3+
background: #fefefe;
44
margin: 0;
55
padding: 20px;
66
color: #333;
@@ -25,7 +25,8 @@ h2 {
2525
padding: 12px;
2626
margin: 6px 0;
2727
background: #fff;
28-
border: 1px solid #ccc;
28+
border: 2px solid #ccc;
29+
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
2930
border-radius: 8px;
3031
transition: background 0.3s;
3132
}
@@ -57,7 +58,7 @@ h2 {
5758
}
5859

5960
.edit-btn{
60-
background: #353535;
61+
background: #ffbc21;
6162
color: #fff;
6263
border: none;
6364
border-radius: 6px;
@@ -68,7 +69,7 @@ h2 {
6869
}
6970

7071
.edit-btn:hover {
71-
background: #000000;
72+
background: #ffa813;
7273
}
7374

7475

@@ -110,8 +111,8 @@ h2 {
110111
margin: 20px auto;
111112
padding: 5px 10px;
112113
font-size: 1em;
113-
background-color: #007bff;
114-
border: 2px solid #007bff;
114+
background-color: #000000;
115+
border: 2px solid #000000;
115116
color: #fff;
116117
border-radius: 8px;
117118
cursor: pointer;
@@ -121,5 +122,5 @@ h2 {
121122
#back-menu:hover {
122123
background-color: #ffffff;
123124
color: #000;
124-
border: 2px solid #007bff;
125+
border: 2px solid #000000;
125126
}

0 commit comments

Comments
 (0)