forked from leemahh11/cinemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (118 loc) · 2.16 KB
/
style.css
File metadata and controls
119 lines (118 loc) · 2.16 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
107
108
109
110
111
112
113
114
115
116
117
118
119
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
font-family: 'Montserrat',sans-serif;
}
html{
scroll-behavior: smooth;
}
body{
/* background-color: #296d98; */
background-image: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9)),url('images/gots.webp');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
height: 130vh;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
height: 10vh;
width: 100%;
}
.logo h3{
color: darkslategrey;
font-size: 30px;
margin-top: 10px;
margin-left: 30px;
}
.nav ul{
display: flex;
}
.nav ul li{
list-style: none;
}
.nav ul li a{
text-decoration: none;
padding: 0px 20px;
color:rgb(227,238,227) ;
}
.nav ul li a:hover{
color: darkslategrey;
font-weight: bolder;
}
.users{
cursor: pointer;
color: darkslategrey;
margin-top: 40px;
margin-right: 40px;
}
.users a{
text-decoration: none;
color: white;
background-color: darkslategrey;
border-radius: 10px;
padding: 10px 30px;
}
.users a:hover{
background-color: black;
color:darkslategrey;
font-weight: bold;
}
.users i{
font-size: 20px;
margin-right: 10px;
padding: 0px 14px;
}
.got{
position: absolute;
color: white;
margin-top: 100px;
margin-left: 100px;
}
.got-page{
line-height: 1.2;
}
.got-page{
font-size: 25px;
}
.got-page p{
font-size: 15px;
}
span{
color: darkslategrey;
font-weight: bold;
}
.firstline{
height: 2px;
color: darkslategrey;
width: 12%;
margin-left: 0px;
margin-top: 0px;
position: absolute;
}
.poster{
margin-top: 50px;
margin-right: 150px;
}
.poster img{
height: 370px;
width: 610px;
float: right;
border-radius: 10px;
margin-left: 900px;
}
.btn1{
margin-top: 25px;
}
.btn1 a{
text-decoration: none;
color: white;
padding: 7px 10px;
background-color: darkslategray;
border-radius: 20px;
}
.btn1 a:hover{
background: black;
color: darkslategrey;
}