Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
4f321536
Commit
4f321536
authored
Mar 17, 2014
by
techird
Browse files
Options
Browse Files
Download
Plain Diff
merge from dev
parents
ff0c7886
77282951
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
2 deletions
+30
-2
links.css
dist/css/links.css
+2
-1
links.less
dist/css/links.less
+22
-0
index.html
dist/index.html
+6
-1
No files found.
dist/css/
github
.css
→
dist/css/
links
.css
View file @
4f321536
#github-url
{
position
:
absolute
;
width
:
130px
;
height
:
130px
;
right
:
-90px
;
top
:
60px
;
background-color
:
#fff
;
border-radius
:
65px
;
box-shadow
:
-3px
1px
10px
rgba
(
0
,
0
,
0
,
0.3
);
-webkit-transition
:
all
.2s
ease
;
-moz-transition
:
all
.2s
ease
;
-ms-transition
:
all
.2s
ease
;
transition
:
all
.2s
ease
;
opacity
:
.3
}
#github-url
:hover
{
-webkit-transform
:
translate
(
-280px
);
-moz-transform
:
translate
(
-280px
);
-ms-transform
:
translate
(
-280px
);
transform
:
translate
(
-280px
);
opacity
:
1
}
#github-url
{
position
:
absolute
;
width
:
130px
;
height
:
130px
;
right
:
-90px
;
top
:
60px
;
background-color
:
#fff
;
border-radius
:
65px
;
box-shadow
:
-3px
1px
10px
rgba
(
0
,
0
,
0
,
0.3
);
-webkit-transition
:
all
.2s
ease
;
-moz-transition
:
all
.2s
ease
;
-ms-transition
:
all
.2s
ease
;
transition
:
all
.2s
ease
;
opacity
:
.3
;
cursor
:
pointer
}
#github-url
:hover
{
-webkit-transform
:
translate
(
-280px
);
-moz-transform
:
translate
(
-280px
);
-ms-transform
:
translate
(
-280px
);
transform
:
translate
(
-280px
);
opacity
:
1
}
#github-url
:before
{
content
:
' '
;
display
:
block
;
position
:
absolute
;
width
:
300px
;
height
:
130px
;
left
:
65px
;
top
:
0
;
background
:
rgba
(
0
,
0
,
0
,
0.001
)}
#github-url
:after
{
content
:
' '
;
display
:
block
;
position
:
absolute
;
width
:
130px
;
height
:
130px
;
background
:
url(../img/github_mark.png)
no-repeat
5px
4px
}
#github-url
a
{
display
:
block
;
position
:
absolute
;
top
:
40px
;
font-size
:
18px
;
width
:
300px
;
height
:
40px
;
padding
:
10px
0
10px
20px
;
line-height
:
40px
;
color
:
#000
;
left
:
120px
;
border-radius
:
0
25px
25px
0
;
background-color
:
#fff
}
#about
{
position
:
absolute
;
bottom
:
10px
;
right
:
10px
;
height
:
24px
;
line-height
:
24px
;
color
:
#888
;
font-family
:
Arial
;
font-size
:
13px
;
font-weight
:
normal
;
margin
:
0
;
text-shadow
:
0
1px
1px
#000
}
#about
a
{
color
:
#888
}
#about
a
:hover
{
color
:
#fff
}
dist/css/
github
.less
→
dist/css/
links
.less
View file @
4f321536
...
...
@@ -15,6 +15,7 @@
-ms-transition: all .2s ease;
transition: all .2s ease;
opacity: .3;
cursor: pointer;
&:hover {
-webkit-transform: translate(-280px);
...
...
@@ -58,4 +59,25 @@
border-radius: 0 25px 25px 0;
background-color: @bg;
}
}
#about {
position: absolute;
bottom: 10px;
right: 10px;
height: 24px;
line-height: 24px;
color: #888;
font-family: Arial;
font-size: 13px;
font-weight: normal;
margin: 0;
text-shadow: 0 1px 1px black;
a {
color: #888;
&:hover {
color: white;
}
}
}
\ No newline at end of file
dist/index.html
View file @
4f321536
...
...
@@ -17,7 +17,7 @@
<link
href=
"../themes/default/css/import.css"
type=
"text/css"
rel=
"stylesheet"
/>
<link
href=
"../dialogs/dialogs.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"css/
github
.css"
/>
<link
rel=
"stylesheet"
href=
"css/
links
.css"
/>
<script>
$
(
function
()
{
...
...
@@ -32,6 +32,11 @@
<div
id=
"github-url"
>
<a
href=
"https://github.com/fex-team/kityminder.git"
target=
"_blank"
>
Fork me on Github
</a>
</div>
<p
id=
"about"
>
Powered by f-cube,
<a
href=
"http://fex.baidu.com"
target=
"_blank"
>
FEX
</a>
|
<a
href=
"https://github.com/fex-team/kityminder/issues/new"
target=
"_blank"
>
Report a Bug
</a>
|
<a
href=
"mailto:kity@baidu.com"
target=
"_blank"
>
Contact Us
</a>
</p>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment