-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (89 loc) · 1.31 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
.title {
font-size: 2rem;
}
.subtitle {
font-size: 1.2rem;
}
.text-center {
text-align: center;
}
.mt-5 {
margin-top: 5%;
}
.mt-2 {
margin-top: 2%;
}
.mt-0 {
margin-top: 0;
}
.mb-5 {
margin-bottom: 5%;
}
.mb-2 {
margin-bottom: 2%;
}
.input {
border: none;
font-size: 1.2rem;
border-bottom: 1px solid black;
text-overflow: ellipsis;
}
.input:focus{
outline: none;
}
.bordered-form {
border: 1px solid black;
padding: 1em 5em;
}
.centered-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.label, .label-select {
text-align: justify;
font-size: 1.2rem;
}
.label-select {
padding-right: 3.2em;
}
.select {
width: 100%;
font-size: 1.2rem;
cursor: pointer;
}
.btn {
cursor: pointer;
padding: 1em 2em;
font-size: 1rem;
border: none;
background-color: gainsboro;
}
.centered-btn {
display: block;
margin: 0 auto;
}
.score-list {
list-style-type: decimal;
margin-top: 0;
max-width: 100%;
min-width: 50%;
width: 50%;
}
.corpus-list {
list-style-type: disc;
margin-top: 0;
}
.query, .strategy, .score {
font-size: 1.5rem;
}
.score {
margin: 1em 0;
}
.score:first {
margin: 0;
}
.hidden {
display: none;
}