Dc0dE commited on
Commit
67ef373
·
verified ·
1 Parent(s): 27fc8f3

Upload 3 files

Browse files
Files changed (3) hide show
  1. ui/Ox.jpg +0 -0
  2. ui/Style.css +127 -0
  3. ui/antivirus.png +0 -0
ui/Ox.jpg ADDED
ui/Style.css ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base Styles */
2
+ body {
3
+ background-color: #0b0c10; /* Very dark background */
4
+ color: #FF00FF; /* Bright cyan text */
5
+ font-family: 'Roboto', Arial, sans-serif; /* Modern sans-serif font */
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+
10
+ /* Headers */
11
+ h1, h2, h3, h4, h5, h6 {
12
+ color: #45a29e; /* Muted cyan for titles */
13
+ text-align: center;
14
+ font-family: 'Raleway', Arial, sans-serif;
15
+ font-weight: 300; /* Light font weight */
16
+ margin-bottom: 0.5rem;
17
+ animation: glow 1.5s infinite; /* Add the glow animation */
18
+ border-radius: 10px;
19
+ }
20
+
21
+ /* Paragraph and List Styles */
22
+ p, ol, ul, dl {
23
+ color: #c5c6c7; /* Light gray for paragraph text */
24
+ line-height: 1.6; /* Improved readability */
25
+ margin: 0 0 1.5rem;
26
+ }
27
+
28
+ /* Button Container */
29
+ .button-container {
30
+ display: flex;
31
+ justify-content: center;
32
+ margin: 2rem 0; /* Space above and below the container */
33
+ }
34
+
35
+ /* Buttons */
36
+ .stButton>button {
37
+ background-color: #1f2833; /* Dark background for buttons */
38
+ color: #66fcf1; /* Cyan text for buttons */
39
+ border: 1px solid #66fcf1;
40
+ border-radius: 8px; /* Slightly rounded corners */
41
+ padding: 0.75rem 1.5rem; /* Padding for better clickability */
42
+ transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
43
+ cursor: pointer;
44
+ font-size: 1rem; /* Increase font size for better readability */
45
+ font-weight: 500; /* Slightly bolder font weight */
46
+ animation: glow 1.5s infinite;
47
+ }
48
+
49
+ .stButton>button:hover {
50
+ background-color: #45a29e; /* Hover effect */
51
+ color: #0b0c10;
52
+ transform: scale(1.1);
53
+ box-shadow: 0 0 15px #66fcf1, 0 0 30px #45a29e, 0 0 45px #66fcf1;
54
+ }
55
+
56
+ /* Input Fields */
57
+ .stTextInput>div>div>input, .stTextArea>div>textarea, .stFileUploader>div>div>input {
58
+ background-color: #1f2833; /* Dark background for inputs */
59
+ color: #66fcf1; /* Cyan text for inputs */
60
+ border: 1px solid #66fcf1;
61
+ border-radius: 5px;
62
+ padding: 0.5rem;
63
+ transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
64
+ }
65
+
66
+ .stTextInput>div>div>input:focus, .stTextArea>div>textarea:focus, .stFileUploader>div>div>input:focus {
67
+ color: #66fcf1; /* Keep cyan text when focused */
68
+ background-color: #0b0c10; /* Maintain dark background when focused */
69
+ border-color: #45a29e;
70
+ outline: none;
71
+ }
72
+
73
+ .stTextInput>div>div>input:hover, .stTextArea>div>textarea:hover, .stFileUploader>div>div>input:hover {
74
+ background-color: #0b0c10;
75
+ border-color: #45a29e;
76
+ }
77
+
78
+ .stTextInput>div>div>input::placeholder, .stTextArea>div>textarea::placeholder {
79
+ color: #c5c6c7; /* Light gray placeholder color */
80
+ }
81
+
82
+ /* App Container */
83
+ .stApp {
84
+ display: flex;
85
+ flex-direction: column;
86
+ align-items: center;
87
+ padding: 2rem;
88
+ background-color: #0b0c10;
89
+ }
90
+
91
+ .st-ed {
92
+ background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
93
+ }
94
+
95
+ /* Markdown */
96
+ .stMarkdown p {
97
+ font-size: 1rem;
98
+ font-weight: 400;
99
+ color: #c5c6c7;
100
+ margin: 0 0 1rem;
101
+ padding: 0;
102
+ }
103
+
104
+ /* Advanced Animations */
105
+ @keyframes glow {
106
+ 0% {
107
+ box-shadow: 0 0 5px #66fcf1, 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 40px #45a29e;
108
+ }
109
+ 50% {
110
+ box-shadow: 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 30px #66fcf1, 0 0 50px #45a29e;
111
+ }
112
+ 100% {
113
+ box-shadow: 0 0 5px #66fcf1, 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 40px #45a29e;
114
+ }
115
+ }
116
+
117
+ .stButton>button {
118
+ animation: glow 1.5s infinite;
119
+ }
120
+
121
+ /* Responsive Design */
122
+ @media (max-width: 768px) {
123
+ .stApp {
124
+ padding: 1rem;
125
+ }
126
+ }
127
+
ui/antivirus.png ADDED