Newer
Older
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
#article-view-container {
position: relative;
article {
background-image: $wp_bin;
&.game-article {
#article-banner {
width: 100%;
height: 500px;
background-size: cover;
background-position: center center;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
position: relative;
#header-text-container {
position: absolute;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
padding: 50px;
display: flex;
flex-direction: column;
justify-content: flex-end;
.header-text {
color: #ffffffbb;
margin: 0;
&.h1 {
font-size: 100px;
margin: 0;
}
&.h2 {
font-style: italic;
margin: 0 0 0 150px;
font-size: 32px;
}
}
.play-button {
position: absolute;
right: 10px;
bottom: 10px;
padding: 20px 40px;
border: 1px solid;
border-radius: 10px;
background-color: unset;
font-weight: bold;
font-size: 20px;
cursor: pointer;
color: $blue_2;
&:hover {
color: $blue_3;
}
}
}
}
#article-contents {
// background-color: #1f2122;
// color: $light_1;
// * {
// color: $light_1;
// }
background-color: white;
padding: 40px;
display: grid;
grid-template-columns: 1fr 500px;
max-width: 1000px;
margin: 0 auto;
#article-body {
p {
margin: 0;
}
}
.image-carousel {
height: 400px;
}
}
}
}
}