s-ahal commited on
Commit
9677c56
·
verified ·
1 Parent(s): d5a5cb4

Delete static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +0 -167
static/style.css DELETED
@@ -1,167 +0,0 @@
1
- * {
2
- box-sizing: border-box;
3
- margin: 0;
4
- padding: 0;
5
- }
6
-
7
- body {
8
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
9
- line-height: 1.6;
10
- color: #333;
11
- background-color: #f5f5f5;
12
- }
13
-
14
- .app {
15
- max-width: 800px;
16
- margin: 0 auto;
17
- padding: 20px;
18
- }
19
-
20
- .app-header {
21
- text-align: center;
22
- margin-bottom: 30px;
23
- }
24
-
25
- .app-header h1 {
26
- margin-bottom: 10px;
27
- color: #2c3e50;
28
- }
29
-
30
- .upload-container {
31
- margin-bottom: 20px;
32
- }
33
-
34
- .upload-label {
35
- display: block;
36
- cursor: pointer;
37
- }
38
-
39
- .upload-placeholder {
40
- border: 2px dashed #ccc;
41
- border-radius: 8px;
42
- padding: 60px;
43
- text-align: center;
44
- color: #777;
45
- transition: all 0.3s ease;
46
- }
47
-
48
- .upload-placeholder:hover {
49
- border-color: #4CAF50;
50
- color: #4CAF50;
51
- }
52
-
53
- .image-preview {
54
- width: 100%;
55
- max-width: 100%;
56
- max-height: 300px;
57
- border-radius: 8px;
58
- display: block;
59
- margin: 0 auto;
60
- object-fit: contain;
61
- }
62
-
63
- .file-input {
64
- display: none;
65
- }
66
-
67
- .submit-button {
68
- display: block;
69
- width: 100%;
70
- padding: 12px;
71
- background-color: #4CAF50;
72
- color: white;
73
- border: none;
74
- border-radius: 4px;
75
- font-size: 16px;
76
- cursor: pointer;
77
- margin-bottom: 20px;
78
- transition: background-color 0.3s;
79
- }
80
-
81
- .submit-button:hover {
82
- background-color: #45a049;
83
- }
84
-
85
- .submit-button:disabled {
86
- background-color: #cccccc;
87
- cursor: not-allowed;
88
- }
89
-
90
- .error-message {
91
- color: #e74c3c;
92
- margin-bottom: 20px;
93
- padding: 10px;
94
- background-color: #fadbd8;
95
- border-radius: 4px;
96
- }
97
-
98
- .result-container {
99
- background-color: #f9f9f9;
100
- border-radius: 8px;
101
- padding: 20px;
102
- margin-top: 20px;
103
- box-shadow: 0 2px 4px rgba(0,0,0,0.1);
104
- }
105
-
106
- .result-container h2 {
107
- margin-bottom: 15px;
108
- color: #2c3e50;
109
- }
110
-
111
- .result-message {
112
- margin-bottom: 15px;
113
- }
114
-
115
- .membership-status {
116
- font-size: 18px;
117
- margin-bottom: 15px;
118
- }
119
-
120
- .probability-bar {
121
- height: 24px;
122
- background-color: #e0e0e0;
123
- border-radius: 12px;
124
- position: relative;
125
- overflow: hidden;
126
- margin-top: 15px;
127
- }
128
-
129
- .probability-fill {
130
- height: 100%;
131
- background-color: #4CAF50;
132
- transition: width 0.3s ease;
133
- width: 0%;
134
- }
135
-
136
- .probability-text {
137
- position: absolute;
138
- top: 50%;
139
- left: 50%;
140
- transform: translate(-50%, -50%);
141
- color: black;
142
- font-weight: bold;
143
- }
144
-
145
- .loading {
146
- text-align: center;
147
- margin: 20px 0;
148
- }
149
-
150
- .spinner {
151
- border: 4px solid #f3f3f3;
152
- border-top: 4px solid #4CAF50;
153
- border-radius: 50%;
154
- width: 40px;
155
- height: 40px;
156
- animation: spin 1s linear infinite;
157
- margin: 0 auto 10px;
158
- }
159
-
160
- @keyframes spin {
161
- 0% { transform: rotate(0deg); }
162
- 100% { transform: rotate(360deg); }
163
- }
164
-
165
- .hidden {
166
- display: none;
167
- }