[0ff072]: / static / style.css

Download this file

36 lines (30 with data), 580 Bytes

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