-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (94 loc) · 1.76 KB
/
styles.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
*{
margin: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: #111;
}
.row_poster{
width: 100%;
object-fit: contain;
max-height: 100px;
margin-right: 10px;
transition: transform 450ms;
}
.row_posters{
display: flex;
overflow-y: hidden;
overflow-x: scroll;
padding: 20px;
}
.row_poster:hover{
transform: scale(1.08);
}
.row_posters::-webkit-scrollbar{
display: none;
}
.row_posterLrge{
max-height: 250px;
}
.row_posterLrge:hover{
transform:scale(1.19);
}
.row{
color: white;
}
.banner{
background-image: url('banner.jpg') ;
background-size: cover;
background-position: center center;
color: white;
object-fit: contain;
height: 448px;
}
.banner_title{
font-size: 3rem;
font-weight: 700;
padding-bottom: 0.3rem;
}
.banner_cl{
margin-left: 30px;
padding-top: 140px;
height:190px
}
.banner_description{
width:45rem;
line-height: 1.3;
padding-top: 1rem;
font-size:0.8rem;
max-width: 360px;
height: 180px;
}
.banner_cl{
margin-left: 30px;
padding-top: 140px;
height: 190px;
}
.banner--fadebottom{
margin-top: 145px;
height: 7.4rem;
background-image: linear-gradient(180deg,transparent,rgba(37,37,37,0.61),#111);
}
.nav_logo{
width:80px;
object-fit: contain;
}
.nav_av{
width:30px;
object-fit: contain;
}
.nav{
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 20px;
z-index: 1;
transition-timing-function: ease-in;
transition: 0.5s;
}
.nav_black{
background-color: #111;
}