-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
94 lines (82 loc) · 2.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>8Bit Comic Bubbles - By Christian Kaisermann <christian@kaisermann.me></title>
<link rel="stylesheet" href="./page.css">
<link rel="stylesheet" href="./dist/cbbl.min.css">
<link href='https://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<h1>CSS Comic Bubbles</h1>
<span class="credits">
By <a href="http://kaisermann.me" target="_blank">Kaisermann</a> <br>
Based on <a href="http://wigflip.com/ds/" target="_blank">http://wigflip.com/ds/</a>
</span>
<p class="description">
The only mandatory class is: <strong>.cbbl</strong>
</p>
<hr/>
<div class="inner">
<div class="inner__row text--left">
<span class="inner__title">.cbbl</span>
<div class="cbbl">
Hello
</div>
<br>
<div class="cbbl -right">
How are you?
</div>
</div>
<div class="inner__row text--right">
<span class="inner__title">
.cbbl.-right
</span>
<div class="cbbl -right">
To the right 1 2 3...
</div>
</div>
<div class="inner__row text--right">
<span class="inner__title">.cbbl.-up</span>
<div class="cbbl -up">
From the
</div>
<br>
<br>
<span class="inner__title">.cbbl.-right.-up</span>
<div class="cbbl -right -up">
top
</div>
</div>
<div class="inner__row text--left">
<span class="inner__title">.cbbl.-control > input</span>
<div class="cbbl">
<input type="email" placeholder="Please type your email">
</div>
</div>
<div class="inner__row">
<span class="inner__title">.cbbl.-hover</span>
<span class="inner__desc">Come on, hover it!</span>
<div class="cbbl cbbl -right -hover">
Hover bubble
</div>
</div>
<div class="inner__row text--right">
<span class="inner__title">.cbbl.-up.-control > button</span>
<div class="cbbl -right -up -hover -control">
<button>Click me</button>
</div>
</div>
<div class="inner__row">
<span class="inner__title">.cbbl.-hover.-up.-no-selection</span>
<span class="inner__desc">Come on, select it!</span>
<div class="cbbl -hover -up -no-selection">
PLEASE, SELECT ME
</div>
</div>
</div>
</div>
<a href="https://github.com/kaisermann/comicbubbles"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
</body>
</html>