woletee commited on
Commit
78e6b31
·
1 Parent(s): c430896

adding notes for the styling modified

Browse files
Files changed (2) hide show
  1. static/styles.css +8 -0
  2. templates/index.html +2 -2
static/styles.css CHANGED
@@ -36,6 +36,14 @@ h1, h2, h3 {
36
  height: 10px;
37
  border: 1px solid #333;
38
  }
 
 
 
 
 
 
 
 
39
 
40
  /* ARC Color Mapping: You can customize these */
41
  /* You can customize these */
 
36
  height: 10px;
37
  border: 1px solid #333;
38
  }
39
+ form {
40
+ background-color: #1a1a1a;
41
+ padding: 20px 40px;
42
+ border-radius: 12px;
43
+ box-shadow: 0 0 15px #00000066;
44
+ width: fit-content;
45
+ }
46
+
47
 
48
  /* ARC Color Mapping: You can customize these */
49
  /* You can customize these */
templates/index.html CHANGED
@@ -6,7 +6,7 @@
6
  <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
7
  </head>
8
  <body>
9
- <h1>Genetic Programming Task Solver</h1>
10
 
11
  <form method="POST">
12
  <label for="task">Select a task:</label>
@@ -20,7 +20,7 @@
20
  </form>
21
 
22
  {% if result %}
23
- <h2>Result for: {{ result.task }}</h2>
24
 
25
  <div class="grid-container">
26
  <div class="grid-wrapper">
 
6
  <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
7
  </head>
8
  <body>
9
+ <h1>GP Solver</h1>
10
 
11
  <form method="POST">
12
  <label for="task">Select a task:</label>
 
20
  </form>
21
 
22
  {% if result %}
23
+ <h2>Task ID: {{ result.task }}</h2>
24
 
25
  <div class="grid-container">
26
  <div class="grid-wrapper">