-
Notifications
You must be signed in to change notification settings - Fork 0
/
chris.css
135 lines (124 loc) · 2.36 KB
/
chris.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
padding:0;
margin:0;
}
body {
-webkit-box-shadow: inset 590px 0px 110px -30px rgba(37, 37, 37, 0.9);
-moz-box-shadow: inset 590px 0px 110px -30px rgba(37, 37, 37, 0.9);
box-shadow: inset 590px 0px 110px -30px rgba(37, 37, 37, 0.9);
background-image: url('./assets/backgroud-cris.jpg');
background-repeat: no-repeat;
display: table;
width: 100vw;
height: 80vh;
padding: 100px 0;
color: #ffffff;
background-position: 30% 45%;
background-size: cover;
font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
line-height: 1.2;
overflow: hidden;
}
header {
height: 60px;
background-color: rgb(7, 7, 7);
position: fixed;
top:0;
width: 100vw;
cursor: pointer;
}
.logo-alphaflix{
margin-top: 5px;
margin-left: 30px;
}
.container {
margin-left: 60px;
width: 100vw;
height: calc(100vh - 60px);
display:flex;
align-items: center;
position: fixed;
top: 60px;
left: 0;
}
.container article {
width: 25%;
}
.buttonContainer{
display: flex;
justify-content: center;
width: 75%;
}
img#logo-title {
width: 450px;
}
h2#subT {
margin-top: 50px;
}
.sinopse {
margin-top: 30px;
font-size: 13pt;
}
.mature-number {
border: 1px solid #a1a1a1;
padding: 0 5px;
}
.legend {
color: rgb(156, 156, 156);
}
.modal-play img {
width: 5rem;
height: auto;
}
.modal{
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1000;
}
.modal-dialog iframe{
width: 60vw;
height: 70vh;
margin: 15vh 20vw;
display: block;
}
.close{
position: absolute;
top: 56px;
right: 56px;
width: 34px;
height: 34px;
}
.hidden{
display: none;
}
.buttonContainer figure {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
font-size: small;
color: #ffffff00;
}
.buttonContainer figure figcaption{
margin: 5px;
padding: 5px;
border-radius: 5px;
}
.buttonContainer figure:hover figcaption{
color: #ffffff;
background-color: #000;
padding: 4px;
}
.buttonContainer figure:hover{
cursor: pointer;
}
a {
all: unset;
}