Altayebhssab commited on
Commit
d3543df
·
1 Parent(s): 495920c

Add styles.css

Browse files
Files changed (1) hide show
  1. styles.css +34 -0
styles.css ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Centering content and making it visually appealing */
2
+ body {
3
+ font-family: "Arial", sans-serif;
4
+ background-color: #f5f5f5;
5
+ }
6
+
7
+ h1, h2 {
8
+ color: #1E88E5;
9
+ }
10
+
11
+ textarea, input, select {
12
+ border-radius: 8px !important;
13
+ border: 1px solid #d9d9d9;
14
+ padding: 10px;
15
+ }
16
+
17
+ .stButton button {
18
+ background-color: #1E88E5;
19
+ color: white;
20
+ border: none;
21
+ border-radius: 8px;
22
+ padding: 10px 20px;
23
+ font-weight: bold;
24
+ }
25
+
26
+ .stButton button:hover {
27
+ background-color: #1565C0;
28
+ cursor: pointer;
29
+ }
30
+
31
+ div[role="radiogroup"] > label {
32
+ color: #1E88E5;
33
+ font-weight: bold;
34
+ }