forked from talmobi/v2-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (123 loc) · 2.11 KB
/
Copy pathstyle.css
File metadata and controls
139 lines (123 loc) · 2.11 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
"Arial", sans-serif;
padding: 20px 20px 60px;
max-width: 680px;
margin: 0 auto;
font-size: 16px;
line-height: 1.65;
word-break: break-word;
font-kerning: auto;
font-variant: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
hyphens: auto;
}
h2,
h3,
h4 {
margin-top: 1.5em;
}
a {
cursor: pointer;
color: #0076ff;
text-decoration: none;
transition: all 0.2s ease;
border-bottom: 1px solid white;
}
a:hover {
border-bottom: 1px solid #0076ff;
}
ul,
ol {
padding: 0;
margin-left: 1.5em;
}
ul {
list-style-type: none;
}
li {
margin-bottom: 10px;
}
ul li:before {
content: "–";
}
li:before {
display: inline-block;
color: #999;
position: absolute;
margin-left: -18px;
transition: color 0.2s ease;
}
code,
pre {
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace, serif;
font-size: 0.92em;
color: #d400ff;
}
code:before,
code:after {
content: "`";
}
blockquote {
margin: 1.6em 0;
padding: 5px 24px;
background: #efefef;
}
input,
button,
textarea {
margin: 0;
border: 1px solid #d1d1d1;
border-radius: 5px;
padding: 0.5em;
vertical-align: middle;
white-space: normal;
background: none;
line-height: 1;
font-size: 1rem;
font-family: inherit;
transition: all 0.2s ease;
}
button {
padding: 0.65em 1em;
background: #0076ff;
color: #fff;
border: none;
cursor: pointer;
text-transform: uppercase;
transition: all 0.2s ease;
}
input:focus,
textarea:focus,
button:focus {
outline: 0;
border-color: #0076ff;
}
button:hover {
background: rgba(0, 118, 255, 0.8);
}
button:focus {
box-shadow: 0 0 0 2px rgba(0, 118, 255, 0.5);
}
button:disabled {
pointer-events: none;
background: #999;
}
img {
max-width: 100%;
}
textarea {
min-height: 300px;
width: 100%;
resize: none;
margin: 1.4em 0;
box-sizing: border-box;
}
hr {
border: none;
border-bottom: 1px solid #efefef;
margin: 6em auto;
}