-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_page.css
103 lines (96 loc) · 1.17 KB
/
search_page.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
.container
{
display: inline flex;
flex-direction: row;
}
.col img
{
width:100%;
}
.col p
{
text-align: center;
}
h1{
color:white;
}
.form-row{
justify-content: center;
}
#numofresults{
color: white;
text-align: center;
}
.imageCon:hover img
{
opacity: 0.1;
transition: all 500ms;
}
.imageCon
{
padding: 40px;
position: relative;
overflow: hidden;
display:block;
}
.rating
{
position: absolute;
text-align: center;
top:10px;
left:0;
bottom:0;
right:0;
color: white;
font-size: 15px;
/*font-size: 10px;*/
}
.numofVotes
{
position: absolute;
text-align: center;
top:30px;
left:0;
bottom:0;
right:0;
color: white;
font-size: 15px;
/*font-size: 10px;*/
}
.description
{
position: absolute;
text-align: center;
top:60px;
left:0;
bottom:0;
right:0;
color: white;
font-size: 15px;
}
.imageCon p
{
visibility: hidden;
}
.imageCon:hover p
{
visibility: visible;
}
.resultsRow
{
font-size: 18px;
margin-left: 16px;
}
.title
{
font-size: 15px;
color: white;
}
.release
{
font-size: 15px;
color: white;
}
body {
background-color: #ca3e47 !important;
}