mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
feature(css) add urls
This commit is contained in:
parent
3394f256e3
commit
80d72abf6e
3 changed files with 46 additions and 45 deletions
|
|
@ -1,34 +1,3 @@
|
|||
/*
|
||||
@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono);
|
||||
*/
|
||||
|
||||
/* http://fontello.com/ */
|
||||
@font-face {
|
||||
font-family: 'Fontello';
|
||||
src: url("/font/fontello.eot");
|
||||
src: url("/font/fontello.eot?#iefix") format('embedded-opentype'),
|
||||
url("/font/fontello.woff") format('woff'),
|
||||
url("/font/fontello.ttf") format('truetype'),
|
||||
url("/font/fontello.svg#cloudcmd") format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family : 'Droid Sans Mono';
|
||||
src : url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot);
|
||||
src : local('Droid Sans Mono'),
|
||||
local('DroidSansMono'),
|
||||
url(/font/DroidSansMono.eot) format('embedded-opentype'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot?#iefix) format('embedded-opentype'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot) format('embedded-opentype'),
|
||||
url(/font/DroidSansMono.woff) format('woff'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJUYuTAAIFFn5GTWtryCmBQ4.woff) format('woff'),
|
||||
local('Consolas');
|
||||
font-style : normal;
|
||||
font-weight : 400;
|
||||
}
|
||||
|
||||
html {
|
||||
height : 94%;
|
||||
}
|
||||
|
|
@ -114,14 +83,6 @@ body, pre, code {
|
|||
content : attr(data-progress);
|
||||
}
|
||||
|
||||
.loading-svg {
|
||||
background : url(/img/spinner.svg);
|
||||
}
|
||||
|
||||
.loading-gif {
|
||||
background : url(/img/spinner.gif);
|
||||
}
|
||||
|
||||
.cmd-button {
|
||||
width: 5%;
|
||||
height: 30px;
|
||||
|
|
@ -167,12 +128,6 @@ body, pre, code {
|
|||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.directory {
|
||||
background-image:url('/img/dir.png');
|
||||
}
|
||||
.text-file {
|
||||
background-image:url('/img/txt.png');
|
||||
}
|
||||
.fm {
|
||||
width : 97%;
|
||||
height: 90%;
|
||||
|
|
|
|||
45
css/urls.css
Normal file
45
css/urls.css
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono);
|
||||
*/
|
||||
|
||||
/* http://fontello.com/ */
|
||||
@font-face {
|
||||
font-family: 'Fontello';
|
||||
src: url("/font/fontello.eot");
|
||||
src: url("/font/fontello.eot?#iefix") format('embedded-opentype'),
|
||||
url("/font/fontello.woff") format('woff'),
|
||||
url("/font/fontello.ttf") format('truetype'),
|
||||
url("/font/fontello.svg#cloudcmd") format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family : 'Droid Sans Mono';
|
||||
src : url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot);
|
||||
src : local('Droid Sans Mono'),
|
||||
local('DroidSansMono'),
|
||||
url(/font/DroidSansMono.eot) format('embedded-opentype'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot?#iefix) format('embedded-opentype'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot) format('embedded-opentype'),
|
||||
url(/font/DroidSansMono.woff) format('woff'),
|
||||
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJUYuTAAIFFn5GTWtryCmBQ4.woff) format('woff'),
|
||||
local('Consolas');
|
||||
font-style : normal;
|
||||
font-weight : 400;
|
||||
}
|
||||
|
||||
.directory {
|
||||
background-image:url('/img/dir.png');
|
||||
}
|
||||
.text-file {
|
||||
background-image:url('/img/txt.png');
|
||||
}
|
||||
|
||||
.loading-svg {
|
||||
background : url(/img/spinner.svg);
|
||||
}
|
||||
|
||||
.loading-gif {
|
||||
background : url(/img/spinner.gif);
|
||||
}
|
||||
|
|
@ -8,6 +8,7 @@
|
|||
<link rel="icon" href="/favicon.ico" />
|
||||
<title>{{ title }}</title>
|
||||
|
||||
<link rel=stylesheet href=/cloudcmd/css/urls.css>
|
||||
<link rel=stylesheet href=/cloudcmd/join:css/reset.css:css/style.css:css/icons.css:css/help.css>
|
||||
|
||||
<noscript>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue