Ajax Loader
×
HTML
<link href='http://fonts.googleapis.com/css?family=Londrina+Solid' rel='stylesheet' type='text/css'>
1
<link href='http://fonts.googleapis.com/css?family=Londrina+Solid' rel='stylesheet' type='text/css'>
2
 
3
.logo
4
  .row
5
    .ltr.t T
6
    .ltr.a a
7
    .ltr.g g
8
    .ltr.d -
9
  .row
10
    .ltr.g g
11
    .ltr.e e
12
    .ltr.s s
13
    .ltr.t t
 
CSS
$c-fn-1: rgb(248, 247, 230);
1
$c-fn-1: rgb(248, 247, 230);
2
$c-fn-2: rgb(96, 185, 154);
3
$c-fn-3: rgb(247, 120, 37);
4
$c-fn-4: rgb(208, 203, 89);
5
body, html {
6
  position: absolute;
7
  width: 100%;
8
  height: 100%;
9
  text-align: center;
10
}
11
.logo {
12
  top: 25%;
13
  cursor: pointer;
14
  position: relative;
15
  background: #000;
16
  display: inline-flex;
17
  font-size: 100px;
18
  line-height: 1em;
19
  font-weight: 400;
20
  width: 2em;
21
  height: 2em;
22
  flex-flow: column nowrap;
23
  justify-content: space-around;
24
  align-items: center;
25
  box-sizing: border-box;
26
  padding: 0.25em 0.125em;
27
  .row {
28
    margin-top: -0.125em;
29
    flex: 1;
30
    display: flex;
31
    width: 100%;
32
    height: 1px;
33
    flex-flow: row nowrap;
34
    justify-content: space-between;
35
    align-items: center;
36
    transform: scaleY(1.1);
37
  }
38
  .ltr {
39
    font-family: "Londrina Solid";
40
    display: inline-block;
41
    flex: 1;
42
    color: #FFF;
43
    box-sizing: border-box;
44
    &:hover {
45
      &.t { color: $c-fn-1; }
46
      &.a { color: $c-fn-2; }
47
      &.g { color: $c-fn-3; }
48
      &.d { color: $c-fn-4; }
49
      &.e { color: $c-fn-1; }
50
      &.s { color: $c-fn-2; }
51
    }
52
    &.a {
53
      margin-left: -0.125em;
54
    }
55
    &.g {
56
      margin-top: -0.1em;
57
      transform: scaleY(0.75);
58
    }
59
    &.d {
60
      font-size: 0.85em;
61
    }
62
  }
63
}
 

Taggest logo (CSS)

CSSDeck G+