Ajax Loader
×
HTML
<!-- Nota mas boton flow - Keyword = Nota Keyword-->
1
<!-- Nota mas boton flow - Keyword = Nota Keyword-->
2
<p class="titulo">Keyword</p>
3
<p class="nota">Mi cuenta de twitter es <a href="https://twitter.com/mrjopino">@mrjopino</a> hoy 26 de noviembre amaneci con ganas de programar, cualquier cosa asi sea un simple boton o esta nota.</p>
4
<div class="flow"> 
5
  <boton class="Keyword">Keyword</boton>
6
  <boton class="Keyword">Keyword</boton>
7
</div>
8
 
9
<p class="nota">Solamente es de imaginar, cojer la laptop y comenzar a desarrollar tu mundo creativo con <a href="https://twitter.com/mrjopino">HTML5</a> y <a href="https://twitter.com/mrjopino">CSS3</a></p>
10
<div class="flow">
11
  <boton class="Keyword">Keyword</boton>
12
  <boton class="Keyword">Keyword</boton>
13
</div>
14
<p class="corazon"></p>
 
CSS
/* Keyword design by @mrjopino */
1
/* Keyword design by @mrjopino */
2
@import url(http://fonts.googleapis.com/css?family=Lobster|Titan+One);
3
 
4
body {
5
  font: 16px/1.5em Lobster, sans-serif;
6
  margin: 0 auto;
7
  padding: 3em 0 2em;
8
  max-width: 540px;
9
}
10
.titulo {
11
  text-align:center;
12
  margin:auto;
13
  font-family: Titan One;
14
  font-size:60px;
15
  color:#303338;
16
  margin: 2% auto 0;}
17
 
18
.corazon {
19
  text-align:center;
20
  margin:auto;
21
  font-family: Titan One;
22
  font-size:60px;
23
  color:#e8367f;
24
  margin: 2% auto 0;}
25
 
26
.nota {
27
  margin: 3em 0 0 2em;
28
  padding: 0.5em 0 0.5em 2em;
29
  border-left: 1px solid #b3b3b3;
30
  color: #b3b3b3;
31
}
32
.nota a {
33
  color: #1a1a1a;
34
  text-decoration: none;
35
}
36
.nota a:hover {
37
  border-bottom: 1px solid #33bbff;
38
}
39
 
40
/* Boton */
41
 
42
.flow boton {
43
  border: none;
44
  background: hsl(192, 15%, 84%); 
45
  border-radius: 4px;
46
  outline: none;
47
  
48
  padding: 7px 10px;
49
  color: #fff;
50
  font-size: 12px;
51
}
52
.flow boton:hover {
53
  background: hsl(204, 8%, 76%);
54
  transition: background .7s;
55
}
56
.flow boton:active {
57
  background: hsl(204, 8%, 66%);
58
}
59
.flow .Keyword {
60
  border: none; 
61
  background: hsl(6, 78%, 57%);
62
}
63
.flow .Keyword:hover {
64
  background: #7db9e8
65
}
66
.flow .Keyword:active {
67
  background: hsl(6, 64%, 36%)
68
}
69
 
 

Nota Keyword

CSSDeck G+