-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo-jumble.html
executable file
·102 lines (77 loc) · 1.81 KB
/
logo-jumble.html
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
<!DOCTYPE html>
<html>
<head>
<title>Evan Genest - Jumbled!</title>
<style type="text/css">
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #eee;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.box {
margin-top: 14rem;
border: solid blue 0.3rem;
}
.row {
display: flex;
justify-content: center;
border: solid red 0.3rem;
}
.my-name {
background-color: black;
color: #bbf;
border solid blue 0.08rem;
border-radius: 0.4rem;
font-size: 2rem;
width: 2.3rem;
height: 2.3rem;
text-align: center;
}
div.row div:nth-child(odd){
transform: rotate(8deg);
color: pink;
}
div.row div:nth-child(even){
transform: rotate(352deg);
}
a {
color: #4183c4;
text-decoration: none;
}
}
a:hover {
text-decoration: underline;
}
h1 {
letter-spacing: -1px;
line-height: 60px;
font-size: 60px;
font-weight: 100;
margin: 0px 0 50px 0;
text-align: center;
text-shadow: 0 1px 0 #fff;
}
p {
color: rgba(0, 0, 0, 0.5);
margin: 20px 0;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="box">
<h1>Jumble</h1>
<div class="row">
<div class="my-name my-name__first"> E</div><div class="my-name my-name__first">v</div><div class="my-name my-name__first">a</div><div class="my-name my-name__first">n</div><div class="my-name my-name__last"> </div> <div class="my-name my-name__last">G</div> <div class="my-name my-name__last">e</div> <div class="my-name my-name__last">n</div> <div class="my-name my-name__last">e</div> <div class="my-name my-name__last">s</div> <div class="my-name my-name__last">t</div>
</div>
</div>
<script type="text/javascript">
</script>
</body>
</html>