-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.css
79 lines (67 loc) · 1.18 KB
/
results.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
.resultCard {
min-height: 600px;
background-color: #ccc;
border-radius: 10px;
}
#resultSection {
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 20px;
width: 100%;
}
#resultSection img {
height: 400px;
border-radius: 10px;
}
.resultCard {
display: flex;
flex-direction: column;
text-align: justify;
align-items: center;
justify-content: center;
}
.resultCard h1 {
text-align: center;
color: rgb(31, 30, 46) !important;
}
.contentDiv {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
justify-content: space-evenly;
min-height: 500px;
gap: 10px;
margin-right: 10px;
margin-left: 10px;
margin-bottom: 10px;
}
.contentDiv p {
background-color: rgb(31, 30, 46);
padding: 10px;
border-radius: 10px;
color: white;
}
.resultDetails {
width: 30%;
font-size: 25px;
}
ul {
background-color: rgb(31, 30, 46);
padding: 10px;
border-radius: 10px;
list-style-type: none;
color: white;
font-size: 30px;
}
a {
font-size: 30px;
text-decoration: none;
padding: 10px;
border-radius: 10px;
background-color: rgb(31, 30, 46);
color: white;
}
@media screen and (max-width: 800px) {
}