forked from sparkbox/logo-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathascii.html
106 lines (105 loc) · 2.14 KB
/
ascii.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
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ASCII Logo</title>
<link rel="stylesheet" href="all.css">
<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
<style>
.ascii-page {
margin: 16px;
}
.ascii-box {
display: inline-block;
text-align: left;
font-family: 'Inconsolata', Courier, monospace;
color: #252525;
}
.logo {
text-align: center;
}
.logo-1 {
line-height: 0.68;
}
.logo-2 {
line-height: 0.60;
}
.col-1, .col-2 {
width: 50%;
float: left;
}
@media screen and (max-width: 650px) {
.col-1, .col-2 {
width: 100%;
}
}
</style>
</head>
<body class="ascii-page">
<h1 class="title">ASCII Logo</h1>
<div class="col-1">
<h2>No Stroke</h2>
<div class="logo logo-1">
<pre class="ascii-box">
.
.'/
.--------.' /
| .' / \
| .' /
| .' / /
'-' '---'
.'
'-----------------.
.'
_____ _'
' / ,' \
| / ,'
| / ,' /
'-/ ,'-------'
/,'
`
</pre>
</div>
</div>
<div class="col-2">
<h2 class="clear">Stroke</h2>
<div class="logo logo-2">
<pre class="ascii-box">
++
##
'##'
####
;####'
+####################;
+##############+######'
+#; +###`+## :##
+#; `###+ ##, ##;
+#; +###` +## +##
+#; `###+ ##. ##:
+#; +###. +## ###
+#;###+ #########
+####. ########+
###+
;###,
##############################
#############################+
'###:
.###+
+########## ####;
+#########; #######;
+#; +## ;###. `##
+#; ##, +##+ +#:
+#; +## ###; +##
+#; `##`+### ##:
+#; ######+ ,###
+#####################`
'###################;
'###,
###
+#'
#
</pre>
</div>
</div>
</body>
</html>