-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (100 loc) · 1.68 KB
/
style.css
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
font-family: Arial, sans-serif;
margin: 20px;
position: relative;
min-height: 100vh;
padding-bottom: 200px;
/* Footer height */
}
#super-container {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
}
.container {
display: flex;
flex-direction: column;
flex: 1;
max-width: 800px;
margin: auto;
}
.sidebar {
display: flex;
text-align: center;
flex-direction: column;
justify-content: space-around;
margin-right: auto;
margin-top:180px;
width: 300px;
height: 600px;
background-color: #bababa;
padding: 20px;
border-radius: 5px;
}
.sources {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.source-item {
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
text-align: center;
flex: 1;
}
.source-item img {
width: 20px;
vertical-align: middle;
margin-right: 5px;
}
.answer {
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
border: 1px solid #ddd;
font-size:larger;
}
.answer ol {
padding-left: 20px;
}
.answer ol li {
margin-bottom: 40px;
}
.answer ol li span {
background-color: #eef;
border-radius: 3px;
padding: 2px 5px;
margin-left: 5px;
font-size: 0.9em;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #f0f0f0;
padding: 10px;
}
#chart-container {
display: flex;
flex-direction: column;
height: 100px;
}
.chart-bar {
display: flex;
align-items: center;
padding-left: 5px;
justify-content: space-between;
height: 25%;
background-color: #007bff;
transition: width 0.3s ease;
padding-right: 5px;
color: white;
font-size: 12px;
}
.percentage {
min-width: 40px;
text-align: right;
}