-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (90 loc) · 1.65 KB
/
index.css
File metadata and controls
107 lines (90 loc) · 1.65 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
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
.movieInfo::-webkit-scrollbar {
border-radius: 10px;
width:4px;
background-color: #0f41574d;
}
.movieInfo::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 1px darkblue;
border-radius: 10px;
background-color: #316b64;
}
body {
background-color: #00ADEF;
text-align: center;
}
img {
height: 200px;
}
h3 {
font-size: 15px;
font-family: 'Homemade Apple', cursive;
padding: 10px;
margin-left: 3px;
}
a {
color: black;
}
a:visited{
color: black;
}
h4 {
font-family: 'Roboto', sans-serif;
margin-bottom: 0px;
}
p{
font-family: 'Roboto', sans-serif;
font-size: 8px;
padding: 10px;
}
.data{
border: black 5px solid;
width: auto;
height: auto;
margin: 20px 10% 50px 10%;
text-align: center;
background: url("assets/mononokebg.jpg");
background-position: center top;
}
.movies{
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.indivMovie{
padding-right: 0px;
padding-left: 0px;
background-color: #3e887f;
border: black 1px solid;
border-radius: 10px;
height: 140px;
width: 140px;
margin: 20px;
transition: transform 0.4s ease-in-out;
}
.indivMovie:hover {
transform: scale(2);
z-index: 2;
}
.indivMovie #a{
opacity: 1;
transition: opacity 0.4s ease-in-out;
}
.indivMovie:hover #a{
opacity: 0;
}
.movieInfo{
position: absolute;
padding-left: 5px;
margin: 0px;
top: 5px;
height: 130px;
width: 130px;
overflow-y: auto;
font-size: 10px;
transition: opacity 0.4s ease-in-out;
opacity: 0;
}
.movieInfo:hover{
opacity: 1;
}