digitalai commited on
Commit
76e1be5
·
verified ·
1 Parent(s): c85c829

Create styles/main.css

Browse files
Files changed (1) hide show
  1. styles/main.css +74 -0
styles/main.css ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+ .stSidebar {
5
+ padding: 2px !important;
6
+ background-color: #070E1C;
7
+ }
8
+
9
+ /*!* Icon *!*/
10
+ .stSidebar .icon {
11
+ color: orange;
12
+ font-size: 16px;
13
+ }
14
+
15
+ /*!* Nav link *!*/
16
+ .stSidebar .nav-link {
17
+ font-size: 16px;
18
+ text-align: left;
19
+ margin: 0px;
20
+ }
21
+
22
+ /*!* Hover color *!*/
23
+ .stSidebar .nav-link:hover {
24
+ --hover-color: #F30080;
25
+ }
26
+
27
+ /*!* Selected nav link *!*/
28
+ .stSidebar .nav-link-selected {
29
+ background-color: #070E1C;
30
+ }
31
+ a {
32
+ text-decoration: none;
33
+ color: white !important;
34
+ font-weight: 500;
35
+ }
36
+
37
+ a:hover {
38
+ color: #d33682 !important;
39
+ text-decoration: none;
40
+ }
41
+
42
+ ul {list-style-type: none;}
43
+
44
+ hr {
45
+ margin-top: 0;
46
+ margin-bottom: 5%;
47
+ }
48
+ h1 {
49
+ background-color: #d60222;
50
+ font-family: 'IRANSans', sans-serif;
51
+ text-align: center;
52
+ direction: rtl;
53
+ padding-bottom: 30px;
54
+ }
55
+
56
+ body {
57
+ background-color: #f0f2f6;
58
+ font-family: 'IRANSans', sans-serif;
59
+ text-align: right;
60
+ direction: rtl;
61
+ padding-top: 50px;
62
+ }
63
+
64
+ .stButton>button {
65
+ background-color: #4CAF50;
66
+ color: white;
67
+ border-radius: 5px;
68
+ padding: 1rem;
69
+ margin: .5em !important;
70
+ }
71
+
72
+ MainMenu {visibility: hidden;}
73
+ footer {visibility: hidden;}
74
+ header {visibility: hidden;}