File size: 1,259 Bytes
11293c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* style1.css */

/* Generic OnVue-like background and font styles */
body, .gradio-container {
  background-color: #f5f7fa;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* A container style to mimic an exam environment */
.gradio-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style for the question text */
#question-text {
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border-left: 4px solid #0073e6; 
}

/* Force the radio group (multiple choice) to be vertical */
#choices-radio .gradio-radio .radio-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* Buttons styling: updated to a blue background and white text */
button {
  background-color: #0073e6; /* Blue background */
  color: #000000;           /* White text */
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Hover state for buttons */
button:hover {
  background-color: #005bb5; /* Darker blue on hover */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #2e3640;
}