blob: 501b0fe90f3118c8a145949cce0eef7c4a1efe11 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
html {
height: 100%;
}
body {
font-size: $font-size-base;
font-weight: 300;
color: $text-color;
height: 100%;
width: 100%;
background-color: $bg-color;
line-height: $line-height-base;
}
strong {
font-weight: 600;
}
body, input, a, button, textarea {
font-family: $font-family-sans-serif;
font-weight: 300;
}
.text-muted {
color: $text-color-light;
}
.text-warning {
color: $alert-color;
}
.hero-container {
margin: $padding-lg * 3;
font-size: $font-size-xl;
text-align: center;
}
.pull-right {
float: right;
}
.align-right {
text-align: right;
}
a {
color: $link-color;
text-decoration: none;
}
.fa {
margin-right: $padding-sm;
}
.clickable {
cursor: pointer;
}
code, .code {
font-family: $font-family-mono;
font-weight: 600;
}
.pad-left {
margin-left: $padding-lg;
}
.pad-top {
margin-top: $padding-lg;
}
.pad-bottom {
margin-bottom: $padding-lg;
}
[tooltip]:before {
width: 150px;
text-transform: none;
text-align: left;
content: attr(tooltip);
position: absolute;
opacity: 0;
transition: all 0.15s ease;
padding: $padding-lg;
color: #fff;
border-radius: $border-radius-lg;
margin-top: -10px;
margin-left: 20px;
z-index: 5;
pointer-events: none;
}
[tooltip]:hover:before {
opacity: 1;
background: $dark-blue;
}
|