DataCracker commited on
Commit
ca83e22
·
verified ·
1 Parent(s): 4d557b5

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +71 -0
style.css ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ * style.css */
2
+ body {
3
+ background-color: #e8f5e9; /* Light green background */
4
+ font-family: Arial, sans-serif;
5
+ }
6
+
7
+ .stFileUploader {
8
+ background-color: #fff;
9
+ border: 1px solid #ccc;
10
+ border-radius: 5px;
11
+ padding: 10px;
12
+ text-align: center;
13
+ }
14
+
15
+ .stButton {
16
+ background-color: #4CAF50;
17
+ color: white;
18
+ border-radius: 5px;
19
+ padding: 10px 20px;
20
+ text-align: center;
21
+ text-decoration: none;
22
+ display: inline-block;
23
+ font-size: 16px;
24
+ }
25
+
26
+ .stButton:hover {
27
+ background-color: #45a049;
28
+ }
29
+
30
+
31
+ .reportview-container .main .block-container{
32
+ padding-top: 0;
33
+ padding-right: 0;
34
+ padding-left: 0;
35
+ padding-bottom: 0;
36
+ }
37
+ .reportview-container .main {
38
+ display: flex;
39
+ flex-direction: column;
40
+ width: 100vw;
41
+ height: 100vh;
42
+ justify-content: flex-start;
43
+ align-items: center;
44
+ }
45
+ .reportview-container {
46
+ display: flex;
47
+ flex-direction: column;
48
+ align-items: center;
49
+ }
50
+ .question {
51
+ text-align: right;
52
+ margin-right: 2rem;
53
+ color: #2E86C1;
54
+ }
55
+ .answer {
56
+ text-align: left;
57
+ margin-left: 2rem;
58
+ color: #28B463;
59
+ }
60
+ .qa-container {
61
+ width: 80%;
62
+ display: flex;
63
+ flex-direction: row;
64
+ justify-content: space-between;
65
+ margin: 1rem 0;
66
+ }
67
+ .question-answer-divider {
68
+ border-bottom: 1px solid #ddd;
69
+ margin: 1rem 0;
70
+ width: 80%;
71
+ }