a | b/static/style.css | ||
---|---|---|---|
1 | /* Custom styles for the Lung Cancer Prediction webpage */ |
||
2 | |||
3 | .container { |
||
4 | max-width: 800px; |
||
5 | margin: 0 auto; |
||
6 | padding: 20px; |
||
7 | border: 1px solid #ccc; |
||
8 | border-radius: 5px; |
||
9 | background-color: #f7f7f7; |
||
10 | } |
||
11 | |||
12 | h1 { |
||
13 | text-align: center; |
||
14 | margin-bottom: 30px; |
||
15 | } |
||
16 | |||
17 | .form-control { |
||
18 | margin-bottom: 15px; |
||
19 | } |
||
20 | |||
21 | .btn-primary { |
||
22 | display: block; |
||
23 | width: 100%; |
||
24 | } |
||
25 | |||
26 | #result { |
||
27 | font-size: 18px; |
||
28 | font-weight: bold; |
||
29 | text-align: center; |
||
30 | margin-top: 20px; |
||
31 | padding: 10px; |
||
32 | border: 1px solid #ccc; |
||
33 | border-radius: 5px; |
||
34 | background-color: #f2f2f2; |
||
35 | } |