Skip to content
This repository has been archived by the owner on Aug 5, 2019. It is now read-only.

Commit

Permalink
Clean showcase directory
Browse files Browse the repository at this point in the history
  • Loading branch information
soundTricker committed Sep 14, 2012
1 parent 401aaa8 commit 16bd6e5
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ src/showcase/webapp/com.geekvigarista.gwt.bootstrap.BootstrapJUnit
src/showcase/webapp/customcss.showcase src/showcase/webapp/customcss.showcase
src/showcase/webapp/showcase/ src/showcase/webapp/showcase/
src/showcase/webapp/nonresshowcase/ src/showcase/webapp/nonresshowcase/
src/showcase/webapp/WEB-INF
src/showcase/webapp/WEB-INF/classes src/showcase/webapp/WEB-INF/classes
src/showcase/webapp/WEB-INF/deploy/* src/showcase/webapp/WEB-INF/deploy
src/showcase/webapp/WEB-INF/lib src/showcase/webapp/WEB-INF/lib
src/showcase/webapp/bootstrap* src/showcase/webapp/META-INF
maven maven


.idea/ .idea/
Expand Down
12 changes: 12 additions & 0 deletions src/showcase/webapp/WEB-INF/web.xml
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>Bootstrap.html</welcome-file>
</welcome-file-list>

</web-app>
41 changes: 41 additions & 0 deletions src/showcase/webapp/bootstrap.css
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,41 @@
/** Add css rules here for your application. */
section {
padding-top: 60px;
}

/** Example rules used by the template application (remove for your app) */
h1 {
font-size: 2em;
font-weight: bold;
color: #777777;
margin: 40px 0px 70px;
}

.sendButton {
display: block;
font-size: 16pt;
}

/** Most GWT widgets already have a style name defined */
.gwt-DialogBox {
width: 400px;
}

.dialogVPanel {
margin: 5px;
}

.serverResponseLabelError {
color: red;
}

/** Set ids using widget.getElement().setId("idOfElement") */
#closeButton {
margin: 15px 6px 6px;
}

.footer {
margin-top: 45px;
padding: 35px 0 36px;
border-top: 1px solid #E5E5E5;
}
19 changes: 19 additions & 0 deletions src/showcase/webapp/bootstrap.html
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,19 @@
<!doctype html>

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<link type="text/css" rel="stylesheet" href="bootstrap.css">

<title>Web Application Starter Project</title>

<script type="text/javascript" src="bootstrap/bootstrap.nocache.js"></script>
</head>

<body>
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<div id="menu"></div>
<div id="conteudo" style="margin-top: 42px"></div>
</body>
</html>
Binary file not shown.
Binary file removed src/showcase/webapp/img/glyphicons-halflings.png
Binary file not shown.

0 comments on commit 16bd6e5

Please sign in to comment.