Ajax Loader
×
HTML
<div class="double-buttons">
1
<div class="double-buttons">
2
  <a href="#">Preview</a><!--
3
  --><a href="#">Download</a>
4
  <span class="or">or</span>
5
</div>
6
 
7
<!-- IGNORE -->
8
<div class="copyright">
9
  By <a href="http://fwpolice.com">the Fireworks Police</a>.
10
</div>
 
CSS
body{
1
body{
2
  text-align:center;
3
  padding:100px 0;
4
  background:#f5f5f5;
5
}
6
.double-buttons{
7
  display:inline-block;
8
  background-color: #fff;
9
  border:1px solid #ddd;
10
  position:relative;
11
  border-radius: 20px;
12
  height: 40px;
13
  font-family: Helvetica, Arial, sans-serif;
14
  font-size: 12px;
15
  font-weight: bold;
16
  overflow: hidden;
17
}
18
.double-buttons a{
19
  display: inline-block;
20
  padding: 0 30px;
21
  line-height: 40px;
22
  color: #444;
23
  text-decoration: none;
24
  text-transform: uppercase;
25
  width: 100px;
26
}
27
.double-buttons a:first-child{
28
  border-right: 1px solid #ddd;
29
}
30
.double-buttons a:hover{
31
  background-color: #EE4E44;
32
  color: #fff;
33
}
34
.double-buttons a:active{
35
  background-color: #444;
36
  color: #fff;
37
}
38
.double-buttons .or{
39
  position: absolute;
40
  display: block;
41
  width: 26px;
42
  height: 26px;
43
  line-height: 26px;
44
  background-color: #fff;
45
  border-radius:100%;
46
  border: 1px solid #ddd;
47
  font-style: italic;
48
  color: #666;
49
  top: 50%;
50
  left: 50%;
51
  margin-top: -13px;
52
  margin-left: -13px;
53
  cursor: default;
54
}
55
 
56
 
57
 
58
/****** IGNORE ******/
59
.copyright {
60
  display:block;
61
  margin-top: 100px;
62
  text-align: center;
63
  font-family: Helvetica, Arial, sans-serif;
64
  font-size: 12px;
65
  font-weight: bold;
66
  text-transform: uppercase;
67
}
68
.copyright a{
69
  text-decoration: none;
70
  color: #EE4E44;
71
}
 

Double Buttons

CSSDeck G+