-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpresqt.css
120 lines (110 loc) · 1.6 KB
/
presqt.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
background: #e5e5e5;
}
body .container {
padding-top: 30px;
background: #fff;
}
h1.visual-id {
color: #ee7c22;
margin-bottom: 0;
font-size: 26px;
}
h1.visual-id span {
color: #333;
font-weight: 300;
font-size: 18px;
}
p.intro {
font-size: 16px;
}
ul.intro {
font-size: 16px;
list-style-type: none;
}
h4 {
margin-top: 60px;
text-indent: -18px;
padding-left: 18px;
}
h2+h4 {
margin-top: 20px;
}
.pair + h4 {
margin-top: 20px;
}
hr {
margin-top: 50px;
margin-bottom: 50px;
}
ul.list-group {
background: #f5f5f5;
margin: 0 20px;
}
ul.list-group li:nth-child(even) {
background: #f5f5f5;
}
p.list-qualifier {
padding-left: 18px;
}
a.anchor-text {
}
div.sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: rgba(255,255,255,0.9);
padding: 15px;
font-size: 18px;
z-index: 10;
text-align: center;
}
div.sticky ul {
list-style-type: none;
margin: 0;
padding: 0;
}
div.sticky li {
display: inline-block;
margin: 0;
padding: 0 5px;
color: #999;
}
div.sticky li.no-phone {
display: none;
}
.scroll {
height: 300px;
overflow-y: scroll;
}
.pie {
min-height: 150px;
}
.toolusedetail {
display: none;
flex-direction: column;
}
.toolusedetail.is-visible {
display: flex;
}
.toolmatrixname {
font-weight: bold;
}
@media (min-width: 640px) {
body .container {
padding-right: 40px;
padding-left: 40px;
}
h1.visual-id {
font-size: 36px;
}
h1.visual-id span {
font-size: 24px;
}
p.intro, ul.intro {
font-size: 18px;
}
div.sticky li.no-phone {
display: inline-block;
}
}