Ajax Loader
×
HTML
<link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css' />
1
<link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css' />
2
<span id="no">No</span>
3
 
 
CSS
html,
1
html,
2
body {
3
  text-align: center;
4
  width: 100%;
5
  height: 100%;
6
  position: absolute;
7
  top: 0;
8
  left: 0;
9
  padding: 0;
10
  margin: 0 auto;
11
  overflow: hidden;
12
}
13
 
14
body {
15
  display: table;
16
  background-image: url(https://dl.dropboxusercontent.com/u/6037255/permanente/nopPattern.png);
17
  background-color: #eee;
18
}
19
 
20
#no {
21
  font-family: 'Tangerine';
22
  font-size: 300px;
23
  font-weight: normal;
24
  text-align: center;
25
  margin: 0 auto;
26
  
27
  vertical-align: middle;
28
  display: table-cell;
29
  
30
  transition: font-size ease 0.3s;
31
  color: #222;
32
  text-shadow: 0.01em 0.01em 0.01em #888;
33
}
34
 
35
@media (max-width: 480px) {
36
  #no { font-size: 225px; }
37
}
38
 
39
@media (max-width: 320px) {
40
  #no { font-size: 125px; }
41
}
42
 
43
@media (max-width: 160px) {
44
  #no { font-size: 75px; }
45
}
46
 
 

Untitled

CSSDeck G+