replace the google fonts

This commit is contained in:
fanfuxiaoran 2014-06-20 09:41:18 +08:00
parent ee7c390bc6
commit e0b9a1be12
7 changed files with 35 additions and 6 deletions

View File

@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Karla|Ubuntu);
@import url(http:///fonts.useso.com/css?family=Karla|Ubuntu);
/*!
* Bootstrap v2.0.4
*

View File

@ -1,4 +1,4 @@
@import url('http://fonts.googleapis.com/css?family=Droid+Sans:400,700');
@import url('http:///fonts.useso.com/css?family=Droid+Sans:400,700');
/*!
* Bootstrap v2.0.4
*

View File

@ -1,4 +1,4 @@
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('http:///fonts.useso.com/css?family=Open+Sans:400,700');
/*!
* Bootstrap v2.0.4
*

View File

@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Karla|Ubuntu);
@import url(http:///fonts.useso.com/css?family=Karla|Ubuntu);
/*!
* Bootstrap v2.0.4
*

View File

@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Ubuntu);
@import url(http:///fonts.useso.com/css?family=Ubuntu);
/*!
* Bootstrap v2.0.4
*

View File

@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Shojumaru);
@import url(http:///fonts.useso.com/css?family=Shojumaru);
select{
background-color:#fff;

View File

@ -0,0 +1,29 @@
package org.bench4q.web.test.masterMessager;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class ParamInfoModel_Test {
private String label;
private String name;
@XmlElement
public String getLabel() {
return label;
}
public void setLable(String label) {
this.label = label;
}
@XmlElement
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}