forked from vuejs/v2.vuejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_common.styl
173 lines (159 loc) Β· 3.29 KB
/
_common.styl
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
@import "_settings"
@import "_syntax"
@import "_ad"
body
font-family: $body-font
font-size: $body-font-size
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
color: $medium
background-color: white
margin: 0
&.docs
padding-top: $header-height
@media screen and (max-width: 900px)
body.docs
padding-top: 0
a
text-decoration: none
color: $medium
img
border: none
h1, h2, h3, h4, strong
font-weight: 600
color: $dark
code, pre
font-family: $code-font
font-size: $code-font-size
background-color: $codebg
-webkit-font-smoothing: initial
-moz-osx-font-smoothing: initial
code
color: #d63200
padding: 3px 5px
margin: 0 2px
border-radius: 2px
white-space: nowrap
em
color: $light
p
word-spacing: 0.05em
a.button,
input.button
padding: 0.75em 2em
border-radius: 2em
display: inline-block
color: #fff
background-color: lighten($green, 8%)
transition: all .15s ease
box-sizing: border-box
border: 1px solid lighten($green, 8%)
&.has-icon
position: relative
text-indent: 1.4em;
> svg
position: absolute
left: 0.4em
top: 0.4em
width: 2em
&.white
background-color: #fff
color: $green
&.gray
background-color: #f6f6f6
color: $light
border-color: #f6f6f6
#main
position: relative
z-index: $z-base
padding: 0 60px 30px
overflow-x: hidden
#nav
.nav-link
cursor: pointer
.nav-dropdown-container
.nav-link
&:hover:not(.current)
border-bottom: none
&:hover
.nav-dropdown
display: block
.arrow
pointer-events: none
.nav-dropdown
display: none
box-sizing: border-box
max-height: "calc(100vh - %s)" % $header-height
overflow-y: auto
position: absolute
top: 100%
right: -15px
background-color: #fff
padding: 10px 0
border: 1px solid #ddd
border-bottom-color: #ccc
text-align: left
border-radius: 4px
white-space: nowrap
li
line-height: 1.8em
margin: 0
display: block
> ul
padding-left: 0
&:first-child
h4
margin-top: 0
padding-top: 0
border-top: 0
a, h4
padding: 0 24px 0 20px
h4
// text-transform: uppercase
margin: .45em 0 0
padding-top: .45em
border-top: 1px solid #eee
a
color: lighten($dark, 10%)
display: block
&:hover
color: $green
.arrow
display: inline-block
vertical-align: middle
margin-top: -1px
margin-left: 6px
margin-right: -14px
width: 0
height: 0
border-left: 4px solid transparent
border-right: 4px solid transparent
border-top: 5px solid $light
sup.beta.beta
font-size: .6em
margin-left: .7em
text-transform: uppercase
opacity: .6
@media print
body
color: rgb(0,0,0)
.highlight
padding: 0
page-break-inside: avoid
.code
pre
color: rgb(0,0,0)
background-color: rgb(255,255,255)
border-style: solid
border-width: 2px 2px 2px 2px
border-color: #e8e8e8
page-break-inside: avoid
h1,h2,h3,h4,h5
color: rgb(0,0,0)
page-break-after: avoid
page-break-before: avoid
img
page-break-inside: avoid
h2+p
page-break-before: avoid
a:link:after, a:visited:after { content:" [" attr(href) "] "; }