aboutsummaryrefslogtreecommitdiff
path: root/demo/demo.css
blob: 973d86a56dcfd2159ca198f77ebd6ca2214a0a45 (plain)
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
#container {
  margin: 3.125em auto 6.25em;
  padding: 0 20px;
  text-align: center;
  width: 41.25em;
}
#container h1 {
  font-size: 2.125em;
  line-height: .882em;
  text-transform: uppercase;
}
#container h1 span {
  color: #aaa;
  display: block;
  font-size: .588em;
  line-height: 1em;
}
#container h1:hover, #container h1:hover span {
  color: #666;
}
#container h2 {
  border-top: 1px solid #ddd;
  margin-bottom: .625em;
  margin-top: 1.875em;
  padding-top: 1.875em;
}
#container h2 span {
  color: #666;
}
#container li {
  display: inline-block;
  margin: .625em;
}
#container img {
  -webkit-box-shadow: 0 0 0.313em rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 0.313em rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow .3s ease, border-color .3s ease;
  -moz-transition: -moz-box-shadow .3s ease, border-color .3s ease;
  -ms-transition: -ms-box-shadow .3s ease, border-color .3s ease;
  -o-transition: -o-box-shadow .3s ease, border-color .3s ease;
  border-color: #eee;
  border: 0.625em solid rgba(255, 255, 255, 0.5);
  height: 8.75em;
  width: 8.75em;
  box-shadow: 0 0 0.313em rgba(0, 0, 0, 0.05);
  transition: box-shadow .3s ease, border-color .3s ease;
}
#container img:hover {
  -webkit-box-shadow: 0 0 0.938em rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 0.938em rgba(0, 0, 0, 0.25);
  border-color: #fff;
  box-shadow: 0 0 0.938em rgba(0, 0, 0, 0.25);
}
#container footer {
  border-top: 1px solid #ddd;
  color: #aaa;
  font-size: .875em;
  margin-top: 2.143em;
  padding-top: 2.143em;
}

@media only screen and (max-width: 660px) {
  #container {
    width: 100%;
  }
}