-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
52 lines (45 loc) · 894 Bytes
/
demo.css
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
/**
* Tooltip.js is a lightweight javascript plugin for responsive and
* easy to use tooltips.
*
* Demo stylesheet, not needed for production
*
* @version 1.0
* @author Jakob Ploens <[email protected]>
* @copyright Jakob Ploens 2016
* @license The MIT License
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
}
html {
background: #efefef;
}
body {
color: #111;
font-size: 1em;
font-family: 'Roboto', sans-serif;
line-height: 1.8;
padding: 3em;
max-width: 60rem;
}
p {
margin-top: 1.8rem;
margin-bottom: 1.8rem;
}
h1 {
font-size: 1.5em;
font-weight: bold;
margin-bottom: 1.8rem;
}
.trigger {
/*display: inline-block;*/
/*padding: 0 .5em;*/
/*background: #fff;*/
/*border-radius: 2px;*/
border-bottom: 2px solid olive;
color: olive;
}