-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchResults.css
More file actions
62 lines (54 loc) · 1.15 KB
/
searchResults.css
File metadata and controls
62 lines (54 loc) · 1.15 KB
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
body{
background-color: #F5FFFA;
}
h1{
text-align: center;
font-size: 40px !important;
font-weight: bold !important;
/* margin-bottom: 50px !important; */
letter-spacing: 0.3em !important;
}
#output{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 90%;
border-radius: 10px;
/* background-color: blue; */
}
#output div{
padding: auto;
border-radius: 10px;
background-color: #8FBC8F;
color: #000000;
width: 75%;
margin-top: 10px;
margin-bottom: 10px;
font-family: 'Times New Roman', Times, serif;
font-style: italic;
}
#output div h2{
font-size: 2em;
margin-top: 10px;
margin-bottom: 10px;
font-weight: bold;
text-align: center;
}
#output div li {
list-style-type: none;
}
.btn-custom-green {
background-color: #28a745 !important;
border-color: #28a745 !important;
color: white !important;
}
.btn-custom-green:hover {
background-color: #218838 !important;
border-color: #1e7e34 !important;
}
.cardo-regular {
font-family: "Cardo", serif;
font-weight: 400;
font-style: normal;
}