forked from gitploy-io/gitploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.less
More file actions
41 lines (36 loc) · 713 Bytes
/
App.less
File metadata and controls
41 lines (36 loc) · 713 Bytes
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
@import '~antd/dist/antd.less';
@gitploy-prefix: ~'gitploy';
.@{gitploy-prefix} {
// Link changes color when it is hover.
&-link {
margin-bottom: 4px;
color: @text-color;
font-size: @font-size-base;
line-height: @line-height-base;
> a {
color: @text-color;
transition: all 0.3s;
&:hover {
color: @primary-color;
}
}
}
// Override border of code.
&-code {
> code {
border: 0
}
}
&-quote {
padding: 0 0 0 .6em;
border-left: 4px solid rgba(100,100,100,.2);
opacity: .85;
}
&-pending-icon {
height: 6px;
width: 6px;
background-color: #bf8700;
border-radius: 50%;
display: inline-block;
}
}