-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (94 loc) · 1.6 KB
/
style.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
108
109
110
111
112
113
114
115
116
117
118
119
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
color: black;
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/moviehub-bg.jpg');
/* background-position: center; */
/* background-size: cover; */
}
.navbar {
display: flex;
justify-content: space-around;
padding-top: 1em;
}
.right-text{
min-height: 2vh;
font-size: 2rem;
color: beige;
}
.left-text{
font-size: 1.35rem;
color: blue;
}
.right input{
font-size: 1.6rem;
min-height: 5vh;
padding: 0.2em;
font-weight: 400;
max-width: 40vw;
}
.icon-btn{
/* max-width: 8vw; */
cursor: pointer;
color: aliceblue;
background-color: blue;
font-size: 1.5rem;
min-height: 5vh;
padding: 0.35em;
}
section {
/* border: 4px solid red; */
color: white;
min-height: 10vh;
position: relative;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.5rem;
text-align: center;
margin: 1rem;
}
.container{
max-width: 50%;
min-height: 371px;
margin: 5rem auto;
display :flex;
justify-content: space-evenly;
}
.image img{
max-width: 250px;
}
.info{
font-size: 1.5rem;
color:white;
padding: 1rem;
}
.info div{
margin: .5rem;
}
.error{
color: aliceblue;
font-size: large;
}
@media screen and (max-width: 1080px) {
.info{
text-align: center;
}
.image{
display: flex;
justify-content: center;
}
.container{
max-width: 90%;
min-height: 371px;
margin: 5rem auto;
flex-direction: column ;
}
}