geethareddy commited on
Commit
4f946eb
·
verified ·
1 Parent(s): 1b9a424

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +37 -3
static/styles.css CHANGED
@@ -1,5 +1,39 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background-color: #f8f9fa
4
- ::contentReference[oaicite:0]{index=0}
5
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ text-align: center;
4
+ background: linear-gradient(to bottom, #fff, #ffe5d9);
5
+ margin: 0;
6
+ padding: 0;
7
+ }
8
+
9
+ .container {
10
+ background: white;
11
+ width: 400px;
12
+ padding: 20px;
13
+ border-radius: 10px;
14
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
15
+ margin: 50px auto;
16
+ }
17
+
18
+ h1 {
19
+ color: #ff6600;
20
+ }
21
+
22
+ label {
23
+ display: block;
24
+ text-align: left;
25
+ margin: 10px 0 5px;
26
+ }
27
+
28
+ input {
29
+ width: 100%;
30
+ padding: 10px;
31
+ border: 1px solid #ddd;
32
+ border-radius: 5px;
33
+ margin-bottom: 10px;
34
+ }
35
+
36
+ .instructions {
37
+ color: #888;
38
+ margin-top: 10px;
39
+ }