-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
75 lines (62 loc) · 1.01 KB
/
Copy pathstyles.css
File metadata and controls
75 lines (62 loc) · 1.01 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
* {
box-sizing: border-box;
}
body {
background: #faebd7;
color: #a52a2a;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header {
text-align: center;
padding: 3rem 0;
background-image: linear-gradient(120deg, #7fffd4 0%, #7fff00 100%);
color: white;
}
header > h1 {
font-weight: normal;
font-style: italic;
}
main {
padding: 1rem 0;
}
.container {
max-width: 960px;
width: 100%;
margin: 0 auto;
}
.movie {
width: 100%;
}
.ads {
padding: 4px;
padding-right: 8px;
background: white;
width: 80%;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}
.ads__link {
display: flex;
color: inherit;
text-decoration: inherit;
}
.ads__img {
width: 80px;
min-width: 80px;
height: 80px;
margin-right: 16px;
}
.ads__info {
display: flex;
flex-direction: column;
justify-content: center;
}
.ads__title {
margin: 0;
}
.ads__body {
margin: 0;
}