Yaswanth56 commited on
Commit
ab26e00
·
verified ·
1 Parent(s): 40e0c18

Create static/styles.css

Browse files
flask-salesforce-app/static/styles.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f0f8ff;
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ height: 100vh;
8
+ margin: 0;
9
+ }
10
+
11
+ .form-container {
12
+ background: white;
13
+ border-radius: 10px;
14
+ padding: 20px;
15
+ width: 400px;
16
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
17
+ text-align: center;
18
+ }
19
+
20
+ h1 {
21
+ font-size: 24px;
22
+ margin-bottom: 20px;
23
+ }
24
+
25
+ table {
26
+ margin: 20px auto;
27
+ width: 80%;
28
+ text-align: left;
29
+ }