Spaces:
Sleeping
Sleeping
Create static/style.css
Browse files- static/style.css +37 -0
static/style.css
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
display: flex;
|
4 |
+
justify-content: center;
|
5 |
+
align-items: center;
|
6 |
+
height: 100vh;
|
7 |
+
background-color: #f4f4f9;
|
8 |
+
margin: 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.flashcard {
|
12 |
+
background: #fff;
|
13 |
+
border-radius: 8px;
|
14 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
15 |
+
padding: 20px;
|
16 |
+
text-align: center;
|
17 |
+
width: 300px;
|
18 |
+
}
|
19 |
+
|
20 |
+
.content {
|
21 |
+
margin-bottom: 20px;
|
22 |
+
}
|
23 |
+
|
24 |
+
.navigation button {
|
25 |
+
background: #007BFF;
|
26 |
+
border: none;
|
27 |
+
border-radius: 4px;
|
28 |
+
color: #fff;
|
29 |
+
cursor: pointer;
|
30 |
+
font-size: 16px;
|
31 |
+
padding: 10px 20px;
|
32 |
+
margin: 5px;
|
33 |
+
}
|
34 |
+
|
35 |
+
.navigation button:hover {
|
36 |
+
background: #0056b3;
|
37 |
+
}
|