-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoviestyle.css
101 lines (77 loc) · 1.44 KB
/
moviestyle.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
/* To import the font */
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@200&display=swap');
/* Page attributes */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
html{
font-size: 18px;
}
/* Body attributes */
body{
background-image: url(./assets/26105.jpg);
background-repeat: repeat-y;
background-size: cover;
background-attachment: fixed;
}
/* Home button related */
.home button{
color: white;
background: none;
border: none;
}
#return-to-home{
cursor: pointer;
font-size: 1.2rem;
}
#return-to-home:hover{
color: grey;
}
/* Movie Details related */
.movie-details >*{
margin: 20px 10px;
font-size: 1.5rem;
font-weight: 500;
}
.movie-title{
font-size: 2rem;
color: crimson;
border-bottom: 2px black solid;
}
.movie-duration-release-date-trailer >*{
margin: 6px 0;
}
.movie-duration,.release{
padding-right: 30px;
}
/* Movie poster */
.movie-poster img{
max-width: 300px;
margin: 0 auto;
}
/* Title of the movie */
h2{
color: crimson;
}
/* Plot related */
.plot{
max-width: 800px;
border-top: 2px solid black;
}
/* Media Queries */
@media only screen and (max-width:900px ){
#logo{
width: 50px;
margin-left: 0;
}
.home{
display: none;
}
.movie-details{
position: absolute;
top: 600px;
}
}