-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (95 loc) · 1.83 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
body
{
background-color: rgb(97, 89, 89);
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.mainpage
{
background-image: url(gradient.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
.disneypluspage
{
background-image: url(disneyplus.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
.netflixpage
{
background-image: url(netflix.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
.topbar
{
overflow: hidden;
background-color: #333;
}
.topbar a
{
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topbar a:hover
{
background-color: rgb(29, 28, 28);
}
.topbar a.home
{
background-color: green;
}
a.dtac
{
position: relative;
margin-top: 20%;
font-size: 24px;
border-color: black;
border: 10px;
background-color: greenyellow;
color: black;
padding: 15px 32px;
display: inline-block;
text-align: center;
margin-left: 43%;
text-decoration: none;
border-radius: 24px;
border: 2px solid black;
opacity: 0.6;
transition: 0.3s;
}
a.dtac:hover
{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
opacity: 1;
}
a.generator
{
position: relative;
margin-top: 20%;
font-size: 24px;
border-color: black;
border: 10px;
background-color: greenyellow;
color: black;
padding: 15px 32px;
display: inline-block;
text-align: center;
margin-left: 43%;
text-decoration: none;
border-radius: 24px;
border: 2px solid black;
opacity: 0.9;
transition: 0.3s;
}
a.generator:hover
{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
opacity: 1;
}