-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic-logo.html
More file actions
56 lines (56 loc) · 1.9 KB
/
Copy pathstatic-logo.html
File metadata and controls
56 lines (56 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; padding: 50px; background: linear-gradient(135deg, #8b0000 0%, #a0001a 50%, #dc143c 100%); }
.logo {
width: 600px;
height: 240px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background:
linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(139, 0, 0, 0.3) 75%),
linear-gradient(-45deg, transparent 75%, rgba(139, 0, 0, 0.3) 75%),
linear-gradient(135deg, rgba(220, 20, 60, 0.8) 0%, rgba(178, 34, 34, 0.85) 50%, rgba(220, 20, 60, 0.8) 100%);
background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px, 0 0;
border-radius: 20px;
margin: 0 auto;
border: 3px solid rgba(220, 20, 60, 0.6);
box-shadow: 0 0 20px rgba(220, 20, 60, 0.4), 0 0 40px rgba(220, 20, 60, 0.2);
}
.text {
font-family: 'Rock Salt', cursive;
font-size: 3.2em;
color: #000;
font-weight: bold;
transform: skew(-12deg);
letter-spacing: 2px;
text-shadow: 2px 2px 0px #fff, 3px 3px 6px rgba(0, 0, 0, 0.3);
-webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
.letter {
display: inline-block;
margin-right: -0.3em;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap" rel="stylesheet">
</head>
<body>
<div class="logo">
<div class="text">
<span class="letter">S</span>
<span class="letter">l</span>
<span class="letter">i</span>
<span class="letter">d</span>
<span class="letter">e</span>
<span class="letter">r</span>
<span class="letter">s</span>
</div>
</div>
</body>
</html>