aboutsummaryrefslogtreecommitdiffstats
path: root/example/index.css
blob: 1544c6d195c3c051beee1598a000906350e4b8a8 (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
body {
  font-family: arial, sans-serif;
  font-size: 16px;
}

a {
  cursor: pointer;
}

button {
  box-sizing: border-box;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 3px;
  border: solid 1px #0096d6;
  background: linear-gradient(#0096d6, #0081b8);
  color: #fff;
}

button:hover,
button:focus,
button:active {
  background: #0081b8;
  border: solid 1px #0081b8;
}

body > section {
  position: relative;
  width: 100%;
  max-width: 62.5em;
  margin: 0 auto;
  padding: 0 1.5em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article {
  position: relative;
  margin: 0 auto;
  float: left;
}

h1 {
  border-bottom: solid 1px #b9b8bb;
  padding-bottom: .5em;
}