randeom commited on
Commit
57893c5
1 Parent(s): db63f1a

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +36 -0
style.css ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Arial', sans-serif;
3
+ }
4
+
5
+ h1, h2, h3 {
6
+ color: #4CAF50;
7
+ }
8
+
9
+ .stButton button {
10
+ background-color: #4CAF50;
11
+ color: white;
12
+ border: none;
13
+ padding: 10px 20px;
14
+ text-align: center;
15
+ text-decoration: none;
16
+ display: inline-block;
17
+ font-size: 16px;
18
+ margin: 4px 2px;
19
+ cursor: pointer;
20
+ }
21
+
22
+ .stTextInput input {
23
+ border-radius: 5px;
24
+ padding: 10px;
25
+ border: 1px solid #ccc;
26
+ }
27
+
28
+ .stSelectbox select {
29
+ border-radius: 5px;
30
+ padding: 10px;
31
+ border: 1px solid #ccc;
32
+ }
33
+
34
+ .stSlider .stSliderLabel {
35
+ color: #4CAF50;
36
+ }