blob: 49bae0492cfe7fba83a857452bed3fce02ad2475 (
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
|
body {
font-family: arial, sans-serif;
}
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;
}
a {
cursor: pointer;
padding: 6px 12px;
text-decoration: underline;
color: #0096d6;
}
.ns-popover-tooltip a {
text-decoration: none;
}
|