-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmovies.css
85 lines (75 loc) · 1.47 KB
/
cmovies.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
body{
background-color: #1A1A1D;
background-repeat: no-repeat;
}
.logo{
border-radius: 40px;
height: inherit;
box-shadow: 0 0;
}
/*Top navigation bar*/
.topnav {
margin-top: 30px;
overflow: hidden;
background-color:whitesmoke;
width: 990px;
border-radius: 30px;
}
.topnav a {
float: left;
color: #6F2232;
text-align: center;
padding: 15px 20px;
text-decoration: none;
font-size: 17px;
border-radius: 20px;
}
.topnav a:hover {
background-color: #C3073F;
color: black;
opacity: .8;
}
.topnav a.active {
background-color:#950740 ;
color: white;
}
.sign {
float: right;
}
img{
height: 250px;
width: 800px;
}
div>img{
border-radius: 40px;
box-shadow: 0px 0px 25px 4px rgba(255,255,255,0.45);
}
div>img:hover{
transform: scale(1.1,1.05);
}
/* grid */
.grid
{
color: whitesmoke;
margin-left:250px;
display: grid;
grid-template-columns: repeat(1,10px);
grid-template-rows: repeat(9,350px);
grid-gap:10px 10px; /* 30 pixels of space added between rows and 40 pixels added between columns */
}
a>img{
border-radius: 40px;
box-shadow: 0px 0px 25px 4px rgba(255,255,255,0.45);
}
a>img:hover{
transform: scale(1.1,1.05);
}
.grid-item{
border-style: none;
padding:10px;
}
marquee{
text-align:center;
color:lightyellow;/*
text-shadow: 1px 2px 20px #AE1438;*/
}