"Stranger Things"
Bootstrap 4.1.1 Snippet by koshikojha

1
2
3
4
5
6
7
8
9
10
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="flex flex-wrap items-center w-100 pl5 relative">
<div class="center flex items-center justify-center relative title vh-100 w-100 z-max">
<h1 class="tc mv7">Stranger Things</h1>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body {
font-family: itc-benguiat, serif;
background: black;
}
h1 {
color: rgba(0, 0, 0, 0.85);
font-size: 7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
z-index: 1;
position: relative;
text-shadow: -1px -1px 0 red, 1px -1px 0 red, -1px 1px 0 red, 1px 1px 0 red, 0px 0px 50px rgba(255, 0, 0, 0.5);
width: 100%;
background: black;
}
@media screen and (max-width: 1175px) {
h1 {
transition: 300ms all;
font-size: 4rem;
}
}
h1:after {
background: black;
font-size: 7rem;
font-weight: 700;
content: 'Stranger Things';
position: absolute;
left: 50%;
transform: translateX(-50%);
transition: .2s all;
text-shadow: none;
color: black;
opacity: 1;
background-color: red;
background-image: linear-gradient(90deg, black 0%, red 47%, black 100%);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: