Spaces:
Sleeping
Sleeping
Create style.css
Browse files- public/style.css +39 -0
public/style.css
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
margin: 0;
|
4 |
+
padding: 20px;
|
5 |
+
background: #f0f2f5;
|
6 |
+
}
|
7 |
+
|
8 |
+
.container {
|
9 |
+
max-width: 600px;
|
10 |
+
margin: 50px auto;
|
11 |
+
padding: 30px;
|
12 |
+
background: white;
|
13 |
+
border-radius: 10px;
|
14 |
+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
15 |
+
}
|
16 |
+
|
17 |
+
input[type="text"] {
|
18 |
+
width: 100%;
|
19 |
+
padding: 12px;
|
20 |
+
margin: 10px 0;
|
21 |
+
border: 1px solid #ddd;
|
22 |
+
border-radius: 5px;
|
23 |
+
font-size: 16px;
|
24 |
+
}
|
25 |
+
|
26 |
+
button {
|
27 |
+
background: #1a73e8;
|
28 |
+
color: white;
|
29 |
+
border: none;
|
30 |
+
padding: 12px 24px;
|
31 |
+
border-radius: 5px;
|
32 |
+
cursor: pointer;
|
33 |
+
width: 100%;
|
34 |
+
font-size: 16px;
|
35 |
+
}
|
36 |
+
|
37 |
+
button:hover {
|
38 |
+
background: #1557b0;
|
39 |
+
}
|